| 1234567891011121314151617181920212223 |
- //
- // MOFanTaskInfo.h
- //
- // Created by SuperCabbage on 2024/5/30
- // Copyright (c) 2024 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOFanTaskInfo : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSString *title;
- @property (nonatomic, strong) NSString *icon;
- @property (nonatomic, assign) double intimacy;
- @property (nonatomic, assign) double completeNum;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|