FarmMapsApiClient/FarmmapsPoten/Models/PotenInput.cs

33 lines
1.1 KiB
C#
Raw Normal View History

using System;
using Newtonsoft.Json.Linq;
namespace FarmmapsPoten.Models
{
public class PotenInput
{
public string File { get; set; }
2021-04-14 18:53:26 +00:00
public string InputLayerName { get; set; }
public string OutputFileName { get; set; }
public string FieldName { get; set; }
public int PlantingYear { get; set; }
public string MeanDensity { get; set; }
public string Variation { get; set; }
2021-02-12 16:10:25 +00:00
public bool UseShadow { get; set; }
public bool CountPerArea { get; set; }
public JObject GeometryJson { get; set; }
2021-02-12 16:10:25 +00:00
public bool GenerateTaskmap { get; set; }
2021-04-07 08:38:42 +00:00
public string OutputType { get; set; }
public string DdiCode { get; set; }
2021-02-12 16:10:25 +00:00
public string CellWidth { get; set; }
public string CellHeight { get; set; }
public string Centered { get; set; }
2021-02-12 16:10:25 +00:00
public JObject StartPoint { get; set; }
public JObject EndPoint { get; set; }
public string Angle { get; set; }
public string Precision { get; set; }
public string MaximumClasses { get; set; }
2021-02-12 16:10:25 +00:00
}
}