forked from FarmMaps/FarmMapsApiClient
14 lines
350 B
C#
14 lines
350 B
C#
|
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; }
|
|||
|
|
|||
|
}
|
|||
|
}
|