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