Luke Else
18bf369a1b
Poll response now works and accepts a list of responses from the server, in theory one of which should be the route response
18 lines
379 B
C#
18 lines
379 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
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; }
|
|
}
|
|
|
|
} |