GameDataModel.h 875 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // GameDataModel.h
  3. // BuguLive
  4. //
  5. // Created by 王珂 on 16/11/25.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface CardsDataModel : NSObject
  10. @property (nonatomic, copy) NSString *type; //牌型
  11. @property (nonatomic, strong) NSArray *cards; //手牌
  12. @end
  13. @interface GameDataModel : NSObject
  14. @property (nonatomic, copy) NSString *win; //获胜位
  15. @property (nonatomic, strong) NSArray * bet; //总投注数
  16. @property (nonatomic, strong) NSArray * user_bet; //玩家投注数
  17. @property (nonatomic, strong) NSArray * cards_data; //手牌
  18. @property (nonatomic, strong) NSArray * public_cards; //公牌
  19. @property (nonatomic, strong) NSArray * dices; //点数
  20. @end
  21. @interface GameHistoryModel : NSObject
  22. @property (nonatomic, copy) NSString *historyNum;
  23. @end