mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
14 lines
529 B
Objective-C
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
|