| 123456789101112131415161718192021222324252627282930 |
- //
- // MORankBasedata.h
- //
- // Created by SuperCabbage on 2023/12/7
- // Copyright (c) 2023 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class MORankFooter, MORankNewerTop, MORankHit, MORankMe;
- @interface MORankBasedata : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSArray *ranklist;
- @property (nonatomic, strong) NSString *next;
- @property (nonatomic, strong) MORankFooter *rankFooter;
- @property (nonatomic, assign) double endTime;
- @property (nonatomic, strong) NSArray<MORankNewerTop *> *newerTops;
- @property (nonatomic, strong) MORankHit *rankHit;
- @property (nonatomic, strong) MORankMe *rankMe;
- @property (nonatomic, assign) double idx;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|