kleine update zonering

master
Fedde Sijbrandij 2020-12-16 10:23:24 +01:00
parent 59bde76903
commit ab9a23221f
2 changed files with 14 additions and 0 deletions

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; }
}
}