InformationModel.h 686 B

12345678910111213141516171819202122232425
  1. //
  2. // InformationModel.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/5/28.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class UserModel;
  10. @class cuserModel;
  11. @interface InformationModel : NSObject
  12. @property (nonatomic, assign) int has_admin;
  13. @property (nonatomic, assign) int has_focus;
  14. @property (nonatomic, assign) int show_admin;
  15. @property (nonatomic, assign) int show_tipoff;
  16. @property (nonatomic, assign) int status;
  17. @property (nonatomic, assign) int is_forbid;
  18. @property (nonatomic, strong) UserModel *user;
  19. @property (nonatomic, strong) cuserModel *cuser;
  20. @end