FarmMapsApiClient_WURtest/FarmmapsZonering/Models/ZoneringInput.cs

14 lines
350 B
C#
Raw Normal View History

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; }
public string FieldName { get; set; }
public JObject GeometryJson { get; set; }
}
}