MOFunctionData.h 460 B

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