| 1234567891011121314151617181920 |
- //
- // MOLangListData.h
- //
- // Created by SuperCabbage on 2025/7/29
- // Copyright (c) 2025 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOLangListData : NSObject <NSCoding, NSCopying>
- @property (nonatomic, strong) NSArray *langData;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|