| 12345678910111213141516171819202122232425 |
- //
- // MOFunctionalList.h
- //
- // Created by SuperCabbage on 2025/3/10
- // Copyright (c) 2025 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOFunctionalList : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSArray *functionalI18ns;
- @property (nonatomic, strong) NSString *icon;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *jumpLink;
- @property (nonatomic, assign) BOOL isLocal;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|