using CommonObj.model; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace CommonObj.lotoModel { public class convertMoneyResponseObj: Response { [JsonProperty("paymentCode")] public string paymentCode { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class convertMoneyObj : Response { [JsonProperty("seq")] public string seq { get; set; } [JsonProperty("id")] public string id { get; set; } [JsonProperty("acountSend")] public string acountSend { get; set; } [JsonProperty("acountRecieve")] public string acountRecieve { get; set; } [JsonProperty("timeRequest")] public string timeRequest { get; set; } [JsonProperty("timeTopup")] public string timeTopup { get; set; } [JsonProperty("status")] public string status { get; set; } [JsonProperty("money")] public string money { get; set; } [JsonProperty("channelRequest")] public string channelRequest { get; set; } [JsonProperty("channelPayment")] public string channelPayment { get; set; } [JsonProperty("reqeustId")] public string reqeustId { get; set; } [JsonProperty("responseId")] public string responseId { get; set; } [JsonProperty("errCode")] public string errCode { get; set; } [JsonProperty("errMsg")] public string errMsg { get; set; } [JsonProperty("serviceId")] public string serviceId { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } public class convertMoneyListObj : Response { [JsonProperty("rowsOnPage")] public string rowsOnPage { get; set; } [JsonProperty("seqPage")] public string seqPage { get; set; } [JsonProperty("totalPage")] public string totalPage { get; set; } [JsonProperty("totalRow")] public string totalRow { get; set; } [JsonProperty("list")] public convertMoneyObj[] list { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } }