FarmMapsApiClient_KB34_MAST/FarmmapsHaulmkilling/Models/HaulmkillingAgent.cs
Mark van der Wal beaf00a043 can now specify geojson bounds for upload.
changed how to get agents for haulmkilling.
2021-04-11 17:22:19 +02:00

15 lines
382 B
C#

using System.Collections.Generic;
using System.Linq;
namespace FarmmapsHaulmkilling.Models
{
public class HaulmkillingAgent
{
public string Cl { get; set; }
public string Code { get; set; }
public string Label { get; set; }
public string Options { get; set; }
public List<string> ValidOptions => Options.Split(',').ToList();
}
}