mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-19 12:10:55 +00:00
18 lines
430 B
Objective-C
Executable File
18 lines
430 B
Objective-C
Executable File
//
|
|
// Created by Tikhonenko Pavel on 30/11/2013.
|
|
// Copyright (c) 2013 Coub. All rights reserved.
|
|
//
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
@interface CBTagNew : NSObject
|
|
@property (nonatomic, strong) NSNumber *tagId;
|
|
@property (nonatomic, strong) NSString *title;
|
|
@property (nonatomic, strong) NSString *value;
|
|
@property (nonatomic, readonly) NSString *hashTag;
|
|
|
|
+ (instancetype)tagWithAttributes:(NSDictionary *)attributes;
|
|
|
|
@end |