12345678910111213141516171819202122232425262728293031 |
- //
- // GroupMemberModel.h
- //
- // Created by on 2022/3/24
- // Copyright (c) 2022 __MyCompanyName__. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface GroupMemberModel : NSObject <NSCoding, NSCopying>
- @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;
- @property (nonatomic, strong) NSString *imUserId;
- + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
- - (instancetype)initWithDictionary:(NSDictionary *)dict;
- - (NSDictionary *)dictionaryRepresentation;
- @end
|