nbs application can now read multiple input from json file.

This commit is contained in:
2020-04-08 21:43:03 +02:00
parent c80020d122
commit 697e7c910a
5 changed files with 112 additions and 67 deletions

View File

@@ -0,0 +1,16 @@
using System;
using Newtonsoft.Json.Linq;
namespace FarmmapsNbs.Models
{
public class NitrogenInput
{
public string IsariaZipFile { get; set; }
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; }
}
}