1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-02 09:27:55 +01:00
Telegram/Telegraph/TGUpdatesWithSeq.m
2015-10-01 19:19:52 +03:00

21 lines
469 B
Objective-C

#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