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