MOFanTasksList.h 528 B

123456789101112131415161718192021
  1. //
  2. // MOFanTasksList.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. @class MOFanTaskInfo;
  9. @interface MOFanTasksList : NSObject <NSCoding, NSCopying>
  10. @property (nonatomic, assign) double value;
  11. @property (nonatomic, strong) MOFanTaskInfo *fanTaskInfo;
  12. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  13. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  14. - (NSDictionary *)dictionaryRepresentation;
  15. @end