using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Newtonsoft.Json; namespace importer.RestObjects { [JsonObject(MemberSerialization.OptIn)] public class Status { [JsonProperty(PropertyName = "ID")] public int ID { get; set; } [JsonProperty(PropertyName = "Name")] public string Name { get; set; } } }