mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
14 lines
264 B
Objective-C
14 lines
264 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
#import "PSCoding.h"
|
|
|
|
#import "TGBotReplyMarkupButton.h"
|
|
|
|
@interface TGBotReplyMarkupRow : NSObject <PSCoding>
|
|
|
|
@property (nonatomic, strong, readonly) NSArray *buttons;
|
|
|
|
- (instancetype)initWithButtons:(NSArray *)buttons;
|
|
|
|
@end
|