27 lines
587 B
Objective-C
27 lines
587 B
Objective-C
//
|
|
// XPGiftCountModel.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/11/11.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPGiftCountModel : NSObject
|
|
///
|
|
@property (nonatomic,copy) NSString *title;
|
|
///礼物的个数
|
|
@property (nonatomic,copy) NSString *giftNumber;
|
|
/// 背包礼物的时候显示是全部
|
|
@property (nonatomic,assign) BOOL isTotal;
|
|
///是否是自定义数量 默认为NO
|
|
@property (nonatomic, assign) BOOL isCustomCount;
|
|
|
|
+ (instancetype)initCountModel:(NSString *)title giftNumber:(NSString *)giftNumber;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|