FarmMapsApiClient_WURtest/FarmmapsHaulmkilling/Models/HaulmkillingAgent.cs

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