Files
CarbonLib/CarbonLib/Models/SetsForDataTransformation.cs
Francisco Salas 0e8be57d43
All checks were successful
FarmMaps.Develop/CarbonLib/pipeline/head This commit looks good
aw7152: namespace change
2025-12-09 13:41:19 +01:00

25 lines
569 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace CarbonLib.Carbon.Models
{
public class KNMIZoneReg
{
public string KNMI_zone { get; set; }
public List<int> Reg { get; set; }
}
public class NUTS0NUTSII
{
public string prov { get; set; }
public List<int> reg { get; set; }
}
public class SetsForDataTransformation
{
public List<KNMIZoneReg> KNMI_zone_Reg { get; set; }
public List<NUTS0NUTSII> NUTS0NUTSII { get; set; }
}
}