mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
16 lines
428 B
Objective-C
16 lines
428 B
Objective-C
#import "TGModernViewModel.h"
|
|
|
|
@interface TGDocumentMessageIconModel : TGModernViewModel
|
|
|
|
@property (nonatomic, strong) NSString *fileName;
|
|
|
|
@property (nonatomic) CGFloat diameter;
|
|
@property (nonatomic) bool incoming;
|
|
@property (nonatomic) int overlayType;
|
|
@property (nonatomic) float progress;
|
|
|
|
- (void)setOverlayType:(int)overlayType animated:(bool)animated;
|
|
- (void)setProgress:(float)progress animated:(bool)animated;
|
|
|
|
@end
|