MOGuildBase.h 729 B

12345678910111213141516171819202122232425262728
  1. //
  2. // MOGuildBase.h
  3. //
  4. // Created by SuperCabbage on 2023/10/25
  5. // Copyright (c) 2023 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface MOGuildBase : NSObject <NSCoding, NSCopying>
  9. /** 主播人数 */
  10. @property (nonatomic, assign) double anchor;
  11. @property (nonatomic, strong) NSString *id;
  12. @property (nonatomic, strong) NSString *country;
  13. @property (nonatomic, strong) NSString *name;
  14. @property (nonatomic, strong) NSString *logo;
  15. /** 工会编号(对外ID) */
  16. @property (nonatomic, strong) NSString *no;
  17. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  18. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  19. - (NSDictionary *)dictionaryRepresentation;
  20. @end