Spray must now contain all fungicide properties

This commit is contained in:
2021-02-06 14:06:49 +01:00
parent 2196036135
commit 2acd4930b1
4 changed files with 57 additions and 4 deletions

View File

@@ -4,8 +4,8 @@ namespace FarmMapsBlight.Models
{
public class Spray
{
public DateTime SprayTime { get; set; }
public string fungicideCode { get; set; }
public DateTime sprayTime { get; set; }
public Fungicide fungicide { get; set; }
public double dose { get; set; }
public bool isVRA { get; set; }
}