using System; using System.Collections.Generic; using System.Linq; using System.Web; using Newtonsoft.Json; namespace ResfullApi.Models { [Serializable] public class newsWebLotteryResponse { [JsonProperty("status")] public string status { get; set; } [JsonProperty("message")] public string message { get; set; } [JsonProperty("listLottery")] public newsWebLotteryObj[] listLottery { get; set; } public override string ToString() { return JsonConvert.SerializeObject(this); } } }