forked from FarmMaps/FarmMapsApiClient
18 lines
624 B
C#
18 lines
624 B
C#
using System;
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
namespace FarmmapsBulkSatDownload.Models
|
|
{
|
|
public class BulkSatDownloadInput
|
|
{
|
|
public bool UseCreatedCropfield { get; set; }
|
|
public string fieldName { get; set; }
|
|
public string DownloadFolder { get; set; }
|
|
public string cropName { get; set; }
|
|
public int cropYear { get; set; }
|
|
public int fieldID { get; set; }
|
|
public DateTime lastdownloadedimagedate { get; set; }
|
|
public JObject GeometryJson { get; set; }
|
|
//public string fieldName { get { return string.Format($"{cropName}_fld{fieldID}"); } }
|
|
}
|
|
} |