// // GroupMemberModel.h // // Created by on 2022/3/24 // Copyright (c) 2022 __MyCompanyName__. All rights reserved. // #import @interface GroupMemberModel : NSObject @property (nonatomic, strong) NSString *roleType; @property (nonatomic, strong) NSString *userId; @property (nonatomic, strong) NSString *avatar; @property (nonatomic, assign) double internalBaseClassIdentifier; @property (nonatomic, strong) NSString *updateTime; @property (nonatomic, strong) NSString *nickname; @property (nonatomic, assign) BOOL isAdmin; @property (nonatomic, strong) NSString *groupId; @property (nonatomic, strong) NSString *createTime; @property (nonatomic, strong) NSString *firstLetter; + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict; - (instancetype)initWithDictionary:(NSDictionary *)dict; - (NSDictionary *)dictionaryRepresentation; @end