| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using Newtonsoft.Json;
- namespace ResfullApi.Models
- {
- [Serializable]
- public class usersGiftSend
- {
- [JsonProperty("seq")]
- public string seq { get; set; }
- [JsonProperty("giftSendId")]
- public string giftSendId { get; set; }
- [JsonProperty("usersSendId")]
- public string usersSendId { get; set; }
- [JsonProperty("usersSendName")]
- public string usersSendName { get; set; }
-
- [JsonProperty("usersRecevedId")]
- public string usersRecevedId { get; set; }
- [JsonProperty("usersRecevedName")]
- public string usersRecevedName { get; set; }
- [JsonProperty("dateSend")]
- public string dateSend { get; set; }
- [JsonProperty("giftId")]
- public string giftId { get; set; }
- [JsonProperty("code")]
- public string code { get; set; }
- [JsonProperty("name")]
- public string name { get; set; }
- [JsonProperty("chargMoney")]
- public string chargMoney { get; set; }
- [JsonProperty("chargeCode")]
- public string chargeCode { get; set; }
- [JsonProperty("coin")]
- public string coin { get; set; }
- [JsonProperty("status")]
- public string status { get; set; }
-
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- public class usersGiftSendList
- {
- [JsonProperty("status")]
- public string status { get; set; }
- [JsonProperty("message")]
- public string message { get; set; }
- public string rowsOnPage { get; set; }
- [JsonProperty("seqPage")]
- public string seqPage { get; set; }
- [JsonProperty("totalPage")]
- public string totalPage { get; set; }
- [JsonProperty("listGiftSend")]
- public usersGiftSend[] listGiftSend { get; set; }
- public override string ToString()
- {
- return JsonConvert.SerializeObject(this);
- }
- }
- }
|