From 8f98a1d70e6c46c0de9892c7451a34f98d219b38 Mon Sep 17 00:00:00 2001 From: Gianmarco Date: Mon, 22 Dec 2025 15:25:42 +0100 Subject: [PATCH] VM --- StandManager/Model/ComuneIstatExcelViewModel.cs | 2 +- StandManager/Model/ProvinciaViewModel.cs | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 StandManager/Model/ProvinciaViewModel.cs diff --git a/StandManager/Model/ComuneIstatExcelViewModel.cs b/StandManager/Model/ComuneIstatExcelViewModel.cs index bbc6ee9..842a099 100644 --- a/StandManager/Model/ComuneIstatExcelViewModel.cs +++ b/StandManager/Model/ComuneIstatExcelViewModel.cs @@ -21,4 +21,4 @@ public class ComuneIstatExcelViewModel public string Prefisso { get; set; } public string CodFisco { get; set; } -} +} \ No newline at end of file diff --git a/StandManager/Model/ProvinciaViewModel.cs b/StandManager/Model/ProvinciaViewModel.cs new file mode 100644 index 0000000..31a5828 --- /dev/null +++ b/StandManager/Model/ProvinciaViewModel.cs @@ -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; } +} \ No newline at end of file