FarmMapsApiClient_KB34_MAST/FarmmapsBulkSatDownload/Models/BulkSatDownloadInput.cs

18 lines
624 B
C#
Raw Normal View History

2021-05-18 16:19:28 +00:00
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}"); } }
}
}