| 1234567891011121314151617181920212223242526 |
- //
- // MOTasksBiGo.h
- //
- // Created by SuperCabbage on 2024/6/2
- // Copyright (c) 2024 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOTasksBiGo : NSObject <NSCoding, NSCopying>
- //状态(0=不可领取,1=待领取,2=已领取)
- @property (nonatomic, assign) double status;
- @property (nonatomic, strong) NSString *id;
- //分钟数
- @property (nonatomic, assign) double minute;
- //红宝石数量
- @property (nonatomic, assign) double rubine;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|