saves targetn information to a json file.

This commit is contained in:
2020-04-08 22:17:39 +02:00
parent 697e7c910a
commit 08d9f94f2b
4 changed files with 55 additions and 11 deletions

View File

@@ -0,0 +1,9 @@
namespace FarmmapsNbs.Models
{
public class TargetNData
{
public double TSum { get; set; }
public int TargetYield { get; set; }
public double TargetN { get; set; }
}
}