using System; using Newtonsoft.Json.Linq; namespace FarmmapsZonering { public class ZoneringInput { public bool UseShadow { get; set; } public string File { get; set; } public string OutputFileName { get; set; } public string FieldName { get; set; } public JObject GeometryJson { get; set; } } }