forked from FarmMaps/FarmMapsApiClient
27 lines
910 B
C#
27 lines
910 B
C#
using System;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace FarmmapsDataDownload.Models
|
|
{
|
|
public class DataDownloadInput
|
|
{
|
|
public bool UseCreatedCropfield { get; set; }
|
|
public string File { get; set; }
|
|
public string InputVariable { get; set; }
|
|
public string OutputFileName { get; set; }
|
|
public DateTime CropYear { get; set; }
|
|
public JObject GeometryJson { get; set; }
|
|
public string InputLayerName { get; set; }
|
|
public string fieldName { get; set; }
|
|
public bool GetSatelliteData { get; set; }
|
|
public bool GetVanDerSatData { get; set; }
|
|
public string SatelliteBand { get; set; }
|
|
public bool StoreSatelliteStatistics { get; set; }
|
|
public bool StoreSatelliteStatisticsCropYear { get; set; }
|
|
public bool StoreVanDerSatStatistics { get; set; }
|
|
public bool GetShadowData { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |