| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- namespace ApiProcess.Models.bet
- {
- public class betResponseObj: ResCommnon
- {
-
-
- [JsonProperty("serviceId")]
- public string serviceId { get; set; }
- [JsonProperty("randomId")]
- public string randomId { get; set; }
- [JsonProperty("totalMoney")]
- public string totalMoney { get; set; }
-
- [JsonProperty("requestIdUi")]
- public string requestIdUi { get; set; }
- [JsonProperty("requestIdApi")]
- public string requestIdApi { get; set; }
-
- [JsonProperty("tranId")]
- public string tranId { get; set; }
- [JsonProperty("billCode")]
- public string billCode { get; set; }
- [JsonProperty("tranCode")]
- public string tranCode { get; set; }
- [JsonProperty("payContent")]
- public string payContent { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
-
- }
|