2020-09-26 18:11:22 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace FarmMapsBlight.Models
|
|
|
|
|
{
|
|
|
|
|
public class Spray
|
|
|
|
|
{
|
2021-03-01 13:04:18 +00:00
|
|
|
|
public DateTime sprayTime { get; set; }
|
2020-09-26 18:11:22 +00:00
|
|
|
|
public string fungicideCode { get; set; }
|
2021-03-01 13:04:18 +00:00
|
|
|
|
public Fungicide fungicide { get; set; }
|
2020-09-26 18:11:22 +00:00
|
|
|
|
public double dose { get; set; }
|
|
|
|
|
public bool isVRA { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|