mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
22 lines
528 B
Mathematica
22 lines
528 B
Mathematica
|
#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
|