| 12345678910111213141516171819202122232425262728 |
- //
- // MOGuildBase.h
- //
- // Created by SuperCabbage on 2023/10/25
- // Copyright (c) 2023 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface MOGuildBase : NSObject <NSCoding, NSCopying>
- /** 主播人数 */
- @property (nonatomic, assign) double anchor;
- @property (nonatomic, strong) NSString *id;
- @property (nonatomic, strong) NSString *country;
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *logo;
- /** 工会编号(对外ID) */
- @property (nonatomic, strong) NSString *no;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|