2020-04-08 18:53:08 +00:00
|
|
|
namespace FarmmapsHerbicide.Models
|
2020-04-06 11:37:11 +00:00
|
|
|
{
|
|
|
|
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; }
|
|
|
|
}
|
|
|
|
}
|