Files
peko-ios/YuMi/Modules/YMRoom/View/SendGiftView/Model/XPGiftCountModel.h
2024-05-15 09:54:15 +08:00

29 lines
628 B
Objective-C

//
// YMGiftCountModel.h
// YUMI
//
// Created by YUMI on 2021/11/11.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface XPGiftCountModel : PIBaseModel
///
@property (nonatomic,copy) NSString *title;
///礼物的个数
@property (nonatomic,copy) NSString *giftNumber;
/// 背包礼物的时候显示是全部
@property (nonatomic,assign) BOOL isTotal;
///是否是自定义数量 默认为NO
@property (nonatomic, assign) BOOL isCustomCount;
@property(nonatomic,assign) BOOL isOnlyNum;
+ (instancetype)initCountModel:(NSString *)title giftNumber:(NSString *)giftNumber;
@end
NS_ASSUME_NONNULL_END