| 1234567891011121314151617181920 |
- //
- // MOEventData.h
- //
- // Created by SuperCabbage on 2024/1/31
- // Copyright (c) 2024 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOEventData : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSArray *eventList;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|