| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- using CommonObj.model;
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CommonObj.lotoModel
- {
- public class ticketByUserObj
- {
- [JsonProperty("code")]
- public string code { get; set; }
- [JsonProperty("money")]
- public string money { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
-
- public class responseTicketByUserObj : Response
- {
- [JsonProperty("requestId")]
- public string requestId { get; set; }
-
- [JsonProperty("termObj")]
- public termObj termObj { get; set; }
- [JsonProperty("isPromotion")]
- public string isPromotion { get; set; }
- [JsonProperty("totalMoney")]
- public string totalMoney { get; set; }
- [JsonProperty("totalMoneyPromotion")]
- public string totalMoneyPromotion { get; set; }
- [JsonProperty("totalMoneyPayment")]
- public string totalMoneyPayment { get; set; }
- [JsonProperty("promotionId")]
- public string promotionId { get; set; }
- [JsonProperty("transId")]
- public string transId { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|