mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
15 lines
511 B
Objective-C
15 lines
511 B
Objective-C
#import "TGChatModel.h"
|
|
|
|
#import "TGFileLocation.h"
|
|
|
|
@interface TGChannelChatModel : TGChatModel
|
|
|
|
@property (nonatomic, strong, readonly) NSString *title;
|
|
@property (nonatomic, strong, readonly) TGFileLocation *avatarLocation;
|
|
@property (nonatomic, readonly) bool isGroup;
|
|
@property (nonatomic, readonly) int64_t accessHash;
|
|
|
|
- (instancetype)initWithChannelId:(int32_t)channelId title:(NSString *)title avatarLocation:(TGFileLocation *)avatarLocation isGroup:(bool)isGroup accessHash:(int64_t)accessHash;
|
|
|
|
@end
|