2020-12-16 09:23:24 +00:00
|
|
|
|
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; }
|
2021-01-28 14:08:32 +00:00
|
|
|
|
public string fieldName { get; set; }
|
2020-12-16 09:23:24 +00:00
|
|
|
|
public JObject GeometryJson { get; set; }
|
2021-01-28 14:08:32 +00:00
|
|
|
|
public bool GetWatBal { get; set; }
|
|
|
|
|
public bool GetVanDerSat { get; set; }
|
|
|
|
|
public bool storeVanDerSatStatistics { get; set; }
|
2020-12-16 09:23:24 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|