mirror of
https://github.com/danog/Telegram.git
synced 2024-12-04 02:17:51 +01:00
16 lines
247 B
Objective-C
16 lines
247 B
Objective-C
#import "TGPrivateChatModel.h"
|
|
|
|
@implementation TGPrivateChatModel
|
|
|
|
- (instancetype)initWithUserId:(int32_t)userId
|
|
{
|
|
self = [super initWithPeerId:TGPeerIdPrivateMake(userId)];
|
|
if (self != nil)
|
|
{
|
|
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|