| 1234567891011121314151617181920212223 |
- //
- // MOGiftBaseData.h
- //
- // Created by SuperCabbage on 2023/11/22
- // Copyright (c) 2023 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOGiftBaseData : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSString *next;
- @property (nonatomic, strong) NSArray *wishList;
- @property (nonatomic, assign) double complete;
- @property (nonatomic, strong) NSArray *giftWishBase;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|