forked from FarmMaps/FarmMapsApiClient
15 lines
382 B
C#
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();
|
|
}
|
|
} |