// // MOGuildBase.h // // Created by SuperCabbage on 2023/10/25 // Copyright (c) 2023 __MyCompanyName__. All rights reserved. // #import @interface MOGuildBase : NSObject /** 主播人数 */ @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