Veranderingen jits, fedde en pepijn. #9

Merged
mark merged 46 commits from :master into master 2021-06-10 08:25:25 +00:00
40 changed files with 779 additions and 350 deletions
Showing only changes of commit ab9a23221f - Show all commits

View File

@@ -0,0 +1,14 @@
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; }
}
}