| 123456789101112131415161718192021222324 |
- //
- // MOConfigList.h
- //
- // Created by SuperCabbage on 2023/12/11
- // Copyright (c) 2023 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOConfigList : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSString *id;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *icon;
- @property (nonatomic, assign) BOOL isSelected;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|