forked from FarmMaps/FarmMapsApiClient
18 lines
493 B
C#
18 lines
493 B
C#
|
using System;
|
|||
|
using Newtonsoft.Json.Linq;
|
|||
|
|
|||
|
namespace FarmmapsPoten.Models
|
|||
|
{
|
|||
|
public class PotenInput
|
|||
|
{
|
|||
|
public bool UseShadow { get; set; }
|
|||
|
|
|||
|
public string File { 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; }
|
|||
|
public JObject GeometryJson { get; set; }
|
|||
|
}
|
|||
|
}
|