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