| 12345678910111213141516171819202122232425262728 |
- //
- // MOGiftPackList.h
- //
- // Created by SuperCabbage on 2024/9/10
- // Copyright (c) 2024 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOGiftPackList : NSObject <NSCoding, NSCopying>
- @property (nonatomic, assign) double amount;
- @property (nonatomic, strong) NSString *id;
- @property (nonatomic, assign) double costPrice;
- @property (nonatomic, strong) NSArray *giftPackItems;
- @property (nonatomic, assign) BOOL bought;
- @property (nonatomic, strong) NSString *payCode;
- @property (nonatomic, assign) BOOL isChoose;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|