2020-04-08 19:43:03 +00:00
|
|
|
using System;
|
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
|
|
|
namespace FarmmapsNbs.Models
|
|
|
|
{
|
|
|
|
public class NitrogenInput
|
|
|
|
{
|
2020-04-28 14:35:14 +00:00
|
|
|
public string ZippedShapeFile { get; set; }
|
|
|
|
public string InputVariable { get; set; }
|
2020-04-08 19:43:03 +00:00
|
|
|
public string OutputFileName { get; set; }
|
|
|
|
public DateTime PlantingDate { get; set; }
|
|
|
|
public DateTime MeasurementDate { get; set; }
|
|
|
|
public string PotatoPurposeType { get; set; }
|
|
|
|
public int TargetYield { get; set; }
|
|
|
|
public JObject GeometryJson { get; set; }
|
|
|
|
}
|
|
|
|
}
|