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