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