mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-24 07:05:35 +00:00
Build ChatListUI
This commit is contained in:
14
submodules/LegacyComponents/Sources/TGAlphacode.m
Normal file
14
submodules/LegacyComponents/Sources/TGAlphacode.m
Normal file
@@ -0,0 +1,14 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user