29 lines
628 B
Objective-C
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
|