MOFunctionalList.h 652 B

12345678910111213141516171819202122232425
  1. //
  2. // MOFunctionalList.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 MOFunctionalList : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, strong) NSArray *functionalI18ns;
  10. @property (nonatomic, strong) NSString *icon;
  11. @property (nonatomic, strong) NSString *name;
  12. @property (nonatomic, strong) NSString *jumpLink;
  13. @property (nonatomic, assign) BOOL isLocal;
  14. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  15. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  16. - (NSDictionary *)dictionaryRepresentation;
  17. @end