mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
15 lines
192 B
Objective-C
15 lines
192 B
Objective-C
#import "TGVariantMenuItem.h"
|
|
|
|
@implementation TGVariantMenuItem
|
|
|
|
- (id)init
|
|
{
|
|
self = [super initWithType:TGVariantMenuItemType];
|
|
if (self != nil)
|
|
{
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|