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 ValidOptions => Options.Split(',').ToList(); } }