2020-02-22 15:38:54 +04: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