2020-04-22 11:41:49 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
namespace FarmmapsHaulmkilling.Models
|
|
|
|
{
|
|
|
|
public class HaulmkillingAgent
|
|
|
|
{
|
2021-04-12 15:01:17 +00:00
|
|
|
public string Cl { get; set; }
|
|
|
|
public string Code { get; set; }
|
|
|
|
public string Label { get; set; }
|
|
|
|
public string Options { get; set; }
|
2020-04-22 11:41:49 +00:00
|
|
|
|
2021-04-12 15:01:17 +00:00
|
|
|
public List<string> ValidOptions => Options.Split(',').ToList();
|
2020-04-22 11:41:49 +00:00
|
|
|
}
|
|
|
|
}
|