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