MOGiftBaseData.h 601 B

1234567891011121314151617181920212223
  1. //
  2. // MOGiftBaseData.h
  3. //
  4. // Created by SuperCabbage on 2023/11/22
  5. // Copyright (c) 2023 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface MOGiftBaseData : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, strong) NSString *next;
  10. @property (nonatomic, strong) NSArray *wishList;
  11. @property (nonatomic, assign) double complete;
  12. @property (nonatomic, strong) NSArray *giftWishBase;
  13. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  14. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  15. - (NSDictionary *)dictionaryRepresentation;
  16. @end