| 12345678910111213141516171819202122 |
- //
- // MOLangData.h
- //
- // Created by SuperCabbage on 2025/7/28
- // Copyright (c) 2025 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOLangData : NSObject <NSCoding, NSCopying>
- @property (nonatomic, assign) BOOL enabled;
- @property (nonatomic, strong) NSString *lang;
- @property (nonatomic, strong) NSString *name;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|