123456789101112131415161718192021222324252627 |
- //
- // ASExtraPointsModel.h
- // Asteria
- //
- // Created by iOS on 2023/12/25.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ASExtraPointsModel : NSObject
- /// 类型id
- @property (nonatomic, copy) NSString *type;
- /// 类型名称
- @property (nonatomic, copy) NSString *name;
- /// 奖励积分描述
- @property (nonatomic, copy) NSString *point;
- /// 商品分类id
- @property (nonatomic, copy) NSString *categoryId;
- /// 是否可以获得
- @property (nonatomic, assign) BOOL is_obtain;
- @end
- NS_ASSUME_NONNULL_END
|