GameBetModel.h 339 B

12345678910111213141516
  1. //
  2. // GameBetModel.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 GameBetModel : NSObject
  10. @property (nonatomic, copy) NSString * bet; //总投注数
  11. @property (nonatomic, copy) NSString * user_bet; //玩家投注数
  12. @end