refactored program

This commit is contained in:
2020-04-08 20:23:22 +02:00
parent 6dea82b973
commit 70a77f3472
18 changed files with 213 additions and 199 deletions

View File

@@ -0,0 +1,22 @@
namespace FarmmapsApiSamples.Models
{
public class HerbicideAgent
{
public string ProductType { get; set; }
public string Middel { get; set; }
public string Grondsoort { get; set; }
public string ActieveStofGehalte{ get; set; }
public string Gewas { get; set; }
public string Opmerking { get; set; }
public string TankMix { get; set; }
public string ExtraProductType { get; set; }
public float MinDosis { get; set; }
public float MaxDosis { get; set; }
public float A { get; set; }
public float B { get; set; }
public float C { get; set; }
public float D { get; set; }
public float E { get; set; }
public float P { get; set; }
}
}