21 lines
720 B
C#
Raw Normal View History

2020-04-08 20:53:08 +02:00
namespace FarmmapsHerbicide.Models
{
public class HerbicideAgent
{
2020-04-14 09:49:43 +02:00
public string Name { get; set; }
public string SoilType { get; set; }
public string ActiveSubstanceContent{ get; set; }
public string Crop { get; set; }
public string Description { get; set; }
public string TankMix { get; set; }
2020-04-14 09:49:43 +02:00
public string ExtraInputType { 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; }
}
}