mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
15 lines
256 B
Objective-C
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
|