| 123456789101112131415161718192021 |
- //
- // MOAnchorTaskData.h
- //
- // Created by SuperCabbage on 2024/6/2
- // Copyright (c) 2024 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOAnchorTaskData : NSObject <NSCoding, NSCopying>
- @property (nonatomic, assign) double minute;
- @property (nonatomic, strong) NSArray *tasksBiGo;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|