12 lines
227 B
C#
12 lines
227 B
C#
|
using System;
|
||
|
using Newtonsoft.Json.Linq;
|
||
|
|
||
|
namespace FarmmapsDownloadCL.Models
|
||
|
{
|
||
|
public class DownloadCLInput
|
||
|
{
|
||
|
public string[] codelists { get; set; }
|
||
|
public string DownloadFolder { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|