MOEventList.h 610 B

1234567891011121314151617181920212223
  1. //
  2. // MOEventList.h
  3. //
  4. // Created by SuperCabbage on 2024/1/31
  5. // Copyright (c) 2024 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @class MOMedalList;
  9. @interface MOEventList : NSObject <NSCoding, NSCopying>
  10. /** 类型(1=用户等级,2=勋章获得) */
  11. @property (nonatomic, assign) double type;
  12. @property (nonatomic, strong) MOMedalList *medalList;
  13. @property (nonatomic, assign) double level;
  14. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  15. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  16. - (NSDictionary *)dictionaryRepresentation;
  17. @end