Swiftgram/LegacyComponents/TGAlphacode.m
Ilya Laktyushin ff0d334f19 no message
2017-09-12 10:41:47 +03:00

15 lines
256 B
Objective-C

#import "TGAlphacode.h"
@implementation TGAlphacodeEntry
- (instancetype)initWithEmoji:(NSString *)emoji code:(NSString *)code {
self = [super init];
if (self != nil) {
_emoji = emoji;
_code = code;
}
return self;
}
@end