mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
21 lines
469 B
Mathematica
21 lines
469 B
Mathematica
|
#import "TGUpdatesWithSeq.h"
|
||
|
|
||
|
@implementation TGUpdatesWithSeq
|
||
|
|
||
|
- (instancetype)initWithUpdates:(NSArray *)updates date:(int32_t)date seqStart:(int32_t)seqStart seqEnd:(int32_t)seqEnd users:(NSArray *)users chats:(NSArray *)chats
|
||
|
{
|
||
|
self = [super init];
|
||
|
if (self != nil)
|
||
|
{
|
||
|
_updates = updates;
|
||
|
_date = date;
|
||
|
_seqStart = seqStart;
|
||
|
_seqEnd = seqEnd;
|
||
|
_users = users;
|
||
|
_chats = chats;
|
||
|
}
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
@end
|