FarmMapsApiClient_WURtest/FarmmapsZonering/Models/ZoneringInput.cs

22 lines
668 B
C#
Raw Normal View History

2020-12-18 09:22:23 +00:00
using System;
using Newtonsoft.Json.Linq;
2020-12-16 09:23:24 +00:00
2020-12-18 09:22:23 +00:00
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; }
public string LayerName { get; set; }
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; }
2020-12-16 09:23:24 +00:00
2020-12-18 09:22:23 +00:00
}
}