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