2020-12-18 10:22:23 +01:00
|
|
|
|
using System;
|
|
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
|
|
|
|
|
namespace FarmmapsZonering.Models
|
|
|
|
|
{
|
|
|
|
|
public class ZoneringInput
|
|
|
|
|
{
|
|
|
|
|
public string InputItemOne { get; set; }
|
|
|
|
|
public string InputItemTwo { get; set; }
|
|
|
|
|
public string Formula { get; set; }
|
|
|
|
|
public string OutputFileName { get; set; }
|
|
|
|
|
public string CropFieldName { get; set; }
|
2021-03-01 14:04:18 +01:00
|
|
|
|
public string CalculatedLayerName { get; set; }
|
2020-12-18 10:22:23 +01:00
|
|
|
|
public string CalculatedQuantity { get; set; }
|
|
|
|
|
public string CalculatedUnit { get; set; }
|
|
|
|
|
public bool CreateNewCropfield { get; set; }
|
|
|
|
|
public int CropYear { get; set; }
|
|
|
|
|
public JObject GeometryJson { get; set; }
|
2021-01-28 15:08:32 +01:00
|
|
|
|
public bool GetWatBal { get; set; }
|
|
|
|
|
public bool GetVanDerSat { get; set; }
|
|
|
|
|
public bool storeVanDerSatStatistics { get; set; }
|
2020-12-16 10:23:24 +01:00
|
|
|
|
|
2020-12-18 10:22:23 +01:00
|
|
|
|
}
|
|
|
|
|
}
|