MOUserListData.h 455 B

1234567891011121314151617181920
  1. //
  2. // MOUserListData.h
  3. //
  4. // Created by SuperCabbage on 2023/11/28
  5. // Copyright (c) 2023 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface MOUserListData : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, strong) NSArray *userBase;
  10. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  11. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  12. - (NSDictionary *)dictionaryRepresentation;
  13. @end