mirror of
https://github.com/danog/Telegram.git
synced 2024-12-03 09:57:46 +01:00
20 lines
283 B
Objective-C
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
|