// // YMHomePageBannerOnTVCellViewModel.h // MSYOUPAI // // Created by YoMi on 2024/2/15. // Copyright © 2024 MS. All rights reserved. // #import "MSYOUPAIViewModel.h" NS_ASSUME_NONNULL_BEGIN @interface YMHomePageBannerOnTVCellViewModel : MSYOUPAIViewModel /// 上电视锁屏时间 0不锁屏 @property (nonatomic, assign, readonly) NSInteger onTvLockTime; /// 上电视锁屏过期时间 @property (nonatomic, assign, readonly) NSInteger onTvLockExpiredTime; /// 上电视创建时间 @property (nonatomic, assign, readonly) NSInteger onTvCreateTime; /// 上电视礼物数量 @property (nonatomic, strong, readonly) NSString *onTvGiftNumber; /// 上电视礼物金额 @property (nonatomic, strong, readonly) NSString *onTvGiftAmount; /// 上电视礼物名称 @property (nonatomic, strong, readonly) NSString *onTvGiftName; /// 上电视礼物图标 @property (nonatomic, strong, readonly) NSString *onTvGiftIcon; /// 上电视赠送者昵称 @property (nonatomic, strong, readonly) NSString *onTvGiverNickname; /// 上电视赠送者头像 @property (nonatomic, strong, readonly) NSString *onTvGiverAvatar; /// 上电视接受者昵称 @property (nonatomic, strong, readonly) NSString *onTvRecipientNickname; /// 上电视接受者头像 @property (nonatomic, strong, readonly) NSString *onTvRecipientAvatar; /// 上电视赠送提示 @property (nonatomic, strong, readonly) NSAttributedString *giverTips; @end NS_ASSUME_NONNULL_END