zonering most basic flow

This commit is contained in:
2020-11-12 15:49:17 +01:00
parent 07985f6fcf
commit 5066969e98
10 changed files with 96 additions and 20 deletions

View File

@@ -0,0 +1,8 @@
namespace FarmmapsHaulmkilling.Models
{
public class InputParameter
{
public string ItemCode { get; set; }
public string ItemLayer { get; set; }
}
}

View File

@@ -0,0 +1,9 @@
namespace FarmmapsZonering.Models
{
public class Output
{
public string Name { get; set; }
public string Quantity { get; set; }
public string Unit { get; set; }
}
}

View File

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