MOFanTaskInfo.h 593 B

1234567891011121314151617181920212223
  1. //
  2. // MOFanTaskInfo.h
  3. //
  4. // Created by SuperCabbage on 2024/5/30
  5. // Copyright (c) 2024 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface MOFanTaskInfo : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, strong) NSString *title;
  10. @property (nonatomic, strong) NSString *icon;
  11. @property (nonatomic, assign) double intimacy;
  12. @property (nonatomic, assign) double completeNum;
  13. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  14. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  15. - (NSDictionary *)dictionaryRepresentation;
  16. @end