1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-11 08:59:48 +01:00
Telegram/Telegraph/TGStickerPack.h

17 lines
734 B
C
Raw Normal View History

2015-10-01 18:19:52 +02:00
#import <Foundation/Foundation.h>
#import "TGStickerPackReference.h"
@interface TGStickerPack : NSObject <NSCoding, PSCoding>
@property (nonatomic, strong, readonly) id<TGStickerPackReference> packReference;
@property (nonatomic, strong, readonly) NSString *title;
@property (nonatomic, strong, readonly) NSArray *stickerAssociations;
@property (nonatomic, strong, readonly) NSArray *documents;
@property (nonatomic, readonly) int32_t packHash;
2016-02-25 01:03:51 +01:00
@property (nonatomic, readonly) bool hidden;
2015-10-01 18:19:52 +02:00
2016-02-25 01:03:51 +01:00
- (instancetype)initWithPackReference:(id<TGStickerPackReference>)packReference title:(NSString *)title stickerAssociations:(NSArray *)stickerAssociations documents:(NSArray *)documents packHash:(int32_t)packHash hidden:(bool)hidden;
2015-10-01 18:19:52 +02:00
@end