12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // XYMountListCellModel.h
- // Starbuds
- //
- // Created by 翟玉磊 on 2020/1/13.
- // Copyright © 2020 翟玉磊. All rights reserved.
- //
- #import "BaseObject.h"
- NS_ASSUME_NONNULL_BEGIN
- @class XYMountListItemModel;
- @interface XYMountListCellModel : BaseObject
- @property (nonatomic, readwrite, assign) BOOL useStatus;
- @property (nonatomic, readwrite, copy) NSString *quantity;
- @property (nonatomic, readwrite, copy) NSString *itemId;
- @property (nonatomic, readwrite, assign) NSInteger itemType;
- @property (nonatomic, readwrite, strong) XYMountListItemModel *item;
- @property (nonatomic, readwrite, copy) NSString *expireTime;
- @property (nonatomic, readwrite, copy) NSString *bagId;
- @end
- @interface XYMountListItemModel : BaseObject
- @property (nonatomic, readwrite, copy) NSString *animationId;
- @property (nonatomic, readwrite, copy) NSString *mountsName;
- @property (nonatomic, readwrite, copy) NSString *mountsPreview;
- @property (nonatomic, readwrite, copy) NSString *mountsId;
- @property (nonatomic, readwrite, assign) NSInteger mountsRarity;
- @end
- NS_ASSUME_NONNULL_END
|