using Newtonsoft.Json; namespace EFB.Models.JSON { public class PollResponse { [JsonProperty(PropertyName = "cmdname")] public string Command { get; set; } [JsonProperty(PropertyName = "fpl")] public string FlightPlan { get; set; } } }