and of course also add & commit this one ...
This commit is contained in:
parent
90f285a0d1
commit
7f3b87ae38
25
FarmmapsKPI/Models/KPIoutput.cs
Normal file
25
FarmmapsKPI/Models/KPIoutput.cs
Normal 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; }
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user