new project to download latest version of editeelt codelists

This commit is contained in:
2023-10-18 17:32:38 +02:00
parent 2d588026e2
commit d8c2ecb88b
7 changed files with 336 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using System;
using Newtonsoft.Json.Linq;
namespace FarmmapsDownloadCL.Models
{
public class DownloadCLInput
{
public string[] codelists { get; set; }
public string DownloadFolder { get; set; }
}
}