GoldenModel.h 533 B

123456789101112131415161718192021
  1. //
  2. // GoldenModel.h
  3. // BuguLive
  4. //
  5. // Created by GuoMs on 16/11/24.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface GoldenModel : NSObject
  10. @property (nonatomic, copy) NSString *type;
  11. @property (nonatomic, copy) NSString *room_id;
  12. @property (nonatomic, copy) NSString *pai_id;
  13. @property (nonatomic, copy) NSString *post_id;
  14. @property (nonatomic, copy) NSString *desc;
  15. @property(nonatomic,retain)NSMutableArray *data;
  16. @property(nonatomic,retain)NSMutableArray *game_data;
  17. @end