1
0
mirror of https://github.com/danog/Telegram.git synced 2024-12-04 10:27:46 +01:00
Telegram/Telegraph/TGStickerPack.h
2015-10-01 19:19:52 +03:00

16 lines
669 B
Objective-C

#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;
- (instancetype)initWithPackReference:(id<TGStickerPackReference>)packReference title:(NSString *)title stickerAssociations:(NSArray *)stickerAssociations documents:(NSArray *)documents packHash:(int32_t)packHash;
@end