2021-05-18 16:19:28 +00:00
|
|
|
using System;
|
2021-05-26 08:16:29 +00:00
|
|
|
using System.Collections.Generic;
|
2021-05-18 16:19:28 +00:00
|
|
|
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; }
|
2021-05-26 08:16:29 +00:00
|
|
|
public List<string> SatelliteBands { get; set; }
|
2021-05-18 16:19:28 +00:00
|
|
|
public DateTime lastdownloadedimagedate { get; set; }
|
|
|
|
public JObject GeometryJson { get; set; }
|
2021-05-26 08:16:29 +00:00
|
|
|
public string cropfielditemcode { get; set; }
|
2021-05-29 10:50:33 +00:00
|
|
|
public string satellitetaskcode { get; set; }
|
2021-05-26 08:16:29 +00:00
|
|
|
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; }
|
|
|
|
|
2021-05-18 16:19:28 +00:00
|
|
|
}
|
|
|
|
}
|