Swiftgram/Telegram/Watch/Extension/TGNeoAttachmentViewModel.h
2020-02-19 18:44:10 +04:00

14 lines
529 B
Objective-C

#import "TGNeoViewModel.h"
#import <UIKit/UIKit.h>
@class TGBridgeUser;
@interface TGNeoAttachmentViewModel : TGNeoViewModel
@property (nonatomic, readonly) bool inhibitsInitials;
@property (nonatomic, readonly) bool hasCaption;
- (instancetype)initWithAttachments:(NSArray *)attachments author:(TGBridgeUser *)author forChannel:(bool)forChannel users:(NSDictionary *)users font:(UIFont *)font subTitleColor:(UIColor *)subTitleColor normalColor:(UIColor *)normalColor compact:(bool)compact caption:(NSString *)caption;
@end