FamilyListModel.h 865 B

12345678910111213141516171819202122
  1. //
  2. // FamilyListModel.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 16/9/27.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface FamilyListModel : NSObject
  10. @property (nonatomic, copy) NSString * family_id; //公会ID
  11. @property (nonatomic, copy) NSString * family_logo; //公会logo
  12. @property (nonatomic, copy) NSString * family_name; //公会名称
  13. @property (nonatomic, copy) NSString * user_id; //公会长ID
  14. @property (nonatomic, copy) NSString * nick_name; //公会长昵称
  15. @property (nonatomic, copy) NSString * create_time; //创建时间
  16. @property (nonatomic, copy) NSString * user_count; //公会成员数量
  17. @property (nonatomic, copy) NSString * is_apply; //是否已经提交申请,1:已提交、0:未提交
  18. @end