This commit is contained in:
2025-12-22 15:25:42 +01:00
parent 896e44297d
commit 8f98a1d70e
2 changed files with 9 additions and 1 deletions

View File

@ -21,4 +21,4 @@ public class ComuneIstatExcelViewModel
public string Prefisso { get; set; } public string Prefisso { get; set; }
public string CodFisco { get; set; } public string CodFisco { get; set; }
} }

View File

@ -0,0 +1,8 @@
namespace StandManager.Model;
public class ProvinciaViewModel
{
public Guid Id { get; set; }
public string Sigla { get; set; }
public string Provincia { get; set; }
}