1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-03 09:57:46 +01:00
Telegram/Telegraph/TGUpdate.m

22 lines
528 B
Mathematica
Raw Normal View History

2015-10-01 18:19:52 +02:00
#import "TGUpdate.h"
@implementation TGUpdate
- (id)initWithUpdates:(NSArray *)updates date:(int)date beginSeq:(int)beginSeq endSeq:(int)endSeq messageDate:(int)messageDate usersDesc:(NSArray *)usersDesc chatsDesc:(NSArray *)chatsDesc
{
self = [super init];
if (self != nil)
{
_updates = updates;
_date = date;
_beginSeq = beginSeq;
_endSeq = endSeq;
_messageDate = messageDate;
_usersDesc = usersDesc;
_chatsDesc = chatsDesc;
}
return self;
}
@end