| 1234567891011121314151617181920 |
- //
- // MOFunctionData.h
- //
- // Created by SuperCabbage on 2025/3/10
- // Copyright (c) 2025 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOFunctionData : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSArray *functionalList;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|