| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.bet
- {
- public class cmsTraficDetail
- {
- [JsonProperty("seq")]
- public string seq { get; set; }
- [JsonProperty("gameName")]
- public string gameName { get; set; }
- [JsonProperty("billCode")]
- public string billCode { get; set; }
- [JsonProperty("tranCode")]
- public string tranCode { get; set; }
- [JsonProperty("date")]
- public string date { get; set; }
- [JsonProperty("cusName")]
- public string cusName { get; set; }
- [JsonProperty("msisdn")]
- public string msisdn { get; set; }
- [JsonProperty("quantity")]
- public string quantity { get; set; }
- [JsonProperty("price")]
- public string price { get; set; }
- [JsonProperty("moneyBeforeTax")]
- public string moneyBeforeTax { get; set; }
- [JsonProperty("tax")]
- public string tax { get; set; }
- [JsonProperty("moneyTax")]
- public string moneyTax { get; set; }
- [JsonProperty("moneyAfterTax")]
- public string moneyAfterTax { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class cmsTraficDetailList : ResCommnon
- {
-
- [JsonProperty("list")]
- public cmsTraficDetail[] list { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|