1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-03 09:57:46 +01:00
Telegram/Telegraph/TGMenuSection.m
2014-07-10 18:11:09 +04:00

20 lines
283 B
Objective-C

#import "TGMenuSection.h"
@implementation TGMenuSection
@synthesize tag = _tag;
@synthesize title = _title;
@synthesize items = _items;
- (id)init
{
self = [super init];
if (self != nil)
{
_items = [[NSMutableArray alloc] init];
}
return self;
}
@end