and of course also add & commit this one ...

master
Pepijn van Oort 2023-10-18 17:35:34 +02:00
parent 90f285a0d1
commit 7f3b87ae38
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
using System;
using Newtonsoft.Json.Linq;
namespace FarmmapsKPI.Models
{
public class KPIOutput
{
public string id { get; set; }
public KPIOutputData data { get; set; }
public string type { get; set; }
public string unit { get; set; }
public string value { get; set; }
public string duration { get; set; }
public string quantity { get; set; }
public string parentName { get; set; }
public string targetValue { get; set; }
public string thresholdValue { get; set; }
}
public class KPIOutputData
{
public string area { get; set; }
public string cropTypeCode { get; set; }
public string cropTypeName { get; set; }
}
}