forked from FarmMaps/FarmMapsApiClient
pepijn van oort
1bc326cfd2
Added some extra Tasks to /FarmmapsApi/Services/GeneralService.cs Added class SatelliteStatistics.cs to /FarmmapsApi/Models
24 lines
816 B
C#
24 lines
816 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace FarmmapsBulkSatDownload.Models
|
|
{
|
|
public class BulkSatDownloadInput
|
|
{
|
|
public string fieldName { get; set; }
|
|
public int cropYear { get; set; }
|
|
public int fieldID { get; set; }
|
|
public List<string> SatelliteBands { get; set; }
|
|
public DateTime lastdownloadedimagedate { get; set; }
|
|
public JObject GeometryJson { get; set; }
|
|
public string cropfielditemcode { get; set; }
|
|
public string downloadFolder { get; set; }
|
|
public string fileNameStats { get; set; }
|
|
public DB database { get; set; }
|
|
public string schemaname { get; set; }
|
|
public string cropfieldtable { get; set; }
|
|
public string satelllitetable { get; set; }
|
|
|
|
}
|
|
} |