MORankMe.h 542 B

12345678910111213141516171819202122
  1. //
  2. // MORankMe.h
  3. //
  4. // Created by 青天 猫 on 2025/9/11
  5. // Copyright (c) 2025 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @class MOUserBase;
  9. @interface MORankMe : NSObject <NSCoding, NSCopying>
  10. @property (nonatomic, assign) double idx;
  11. @property (nonatomic, assign) double total;
  12. @property (nonatomic, strong) MOUserBase *user;
  13. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  14. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  15. - (NSDictionary *)dictionaryRepresentation;
  16. @end