"Inputfile created for zonering"

This commit is contained in:
Riepma
2020-12-18 10:22:23 +01:00
parent 02708ba01d
commit 764df7ce91
6 changed files with 74 additions and 18 deletions

View File

@@ -3,5 +3,8 @@ namespace FarmmapsHaulmkilling.Models
public class Settings
{
public string CropfieldItemCode { get; set; }
public string CropfieldName { get; set; }
}
}

View File

@@ -0,0 +1,20 @@
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; }
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; }
}
}