EFB/Models/JSON/PollResponse.cs
2022-02-28 21:53:28 +00:00

14 lines
282 B
C#

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; }
}
}