GroupMemberModel.h 960 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // GroupMemberModel.h
  3. //
  4. // Created by on 2022/3/24
  5. // Copyright (c) 2022 __MyCompanyName__. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. @interface GroupMemberModel : NSObject <NSCoding, NSCopying>
  9. @property (nonatomic, strong) NSString *roleType;
  10. @property (nonatomic, strong) NSString *userId;
  11. @property (nonatomic, strong) NSString *avatar;
  12. @property (nonatomic, assign) double internalBaseClassIdentifier;
  13. @property (nonatomic, strong) NSString *updateTime;
  14. @property (nonatomic, strong) NSString *nickname;
  15. @property (nonatomic, assign) BOOL isAdmin;
  16. @property (nonatomic, strong) NSString *groupId;
  17. @property (nonatomic, strong) NSString *createTime;
  18. @property (nonatomic, strong) NSString *firstLetter;
  19. @property (nonatomic, strong) NSString *imUserId;
  20. + (instancetype)modelObjectWithDictionary:(NSDictionary *)dict;
  21. - (instancetype)initWithDictionary:(NSDictionary *)dict;
  22. - (NSDictionary *)dictionaryRepresentation;
  23. @end