2023-03-22 13:48:13 +00:00
|
|
|
using System;
|
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
|
|
|
namespace FarmmapsKPI.Models
|
|
|
|
{
|
|
|
|
public class KPIInput
|
|
|
|
{
|
2023-10-13 14:37:50 +00:00
|
|
|
public bool UseExistingCropfieldWithChildren { get; set; }
|
|
|
|
public bool DeleteNewlyCreatedAfterCalc { get; set; }
|
2023-11-08 12:50:37 +00:00
|
|
|
public string fieldName { get; set; }
|
2023-06-27 12:08:27 +00:00
|
|
|
public string CropfieldItemCode { get; set; }
|
2023-10-04 15:21:05 +00:00
|
|
|
public JObject DataCropfield { get; set; }
|
|
|
|
public string CropRecordingItemCode { get; set; }
|
|
|
|
public JObject DataCropRecording { get; set; }
|
2023-10-13 14:37:50 +00:00
|
|
|
public string[] OperationItemCodes { get; set; }
|
|
|
|
public JObject[] DataOperations { get; set; }
|
2023-10-04 15:21:05 +00:00
|
|
|
public string CropfieldCharacteristicItemCode { get; set; }
|
|
|
|
public JObject DataCropfieldCharacteristic { get; set; }
|
2023-03-22 13:48:13 +00:00
|
|
|
public string DownloadFolder { get; set; }
|
|
|
|
public int CropYear { get; set; }
|
2023-11-08 12:50:37 +00:00
|
|
|
public DateTime StartDate { get; set; }
|
|
|
|
public DateTime EndDate { get; set; }
|
2023-03-22 13:48:13 +00:00
|
|
|
public JObject GeometryJson { get; set; }
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|