| 12345678910111213141516171819202122 |
- //
- // MORankMe.h
- //
- // Created by 青天 猫 on 2025/9/11
- // Copyright (c) 2025 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class MOUserBase;
- @interface MORankMe : NSObject <NSCoding, NSCopying>
- @property (nonatomic, assign) double idx;
- @property (nonatomic, assign) double total;
- @property (nonatomic, strong) MOUserBase *user;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|