This commit is contained in:
2025-12-22 15:19:22 +01:00
parent c08e9325b4
commit 50ff4fb3d3
5 changed files with 1273 additions and 0 deletions

View File

@ -0,0 +1,9 @@
using StandManager.Domain.Entita.Base;
namespace StandManager.Domain.Entita;
public class ProvinciaIstat : EntitaBase
{
public string Istat { get; set; }
public string Comune { get; set; }
}