mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-07-06 03:33:41 +02:00
12 lines
269 B
Objective-C
12 lines
269 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@interface TGBridgeBotInfo : NSObject <NSCoding>
|
|
{
|
|
NSString *_shortDescription;
|
|
NSArray *_commandList;
|
|
}
|
|
|
|
@property (nonatomic, readonly) NSString *shortDescription;
|
|
@property (nonatomic, readonly) NSArray *commandList;
|
|
|
|
@end
|