16 lines
433 B
C#
16 lines
433 B
C#
using StandManager.Domain.Entita.Base;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace StandManager.Domain.Entita;
|
|
|
|
public class ProvinciaIstat : EntitaBase
|
|
{
|
|
public string Sigla { get; set; }
|
|
public string Provincia { get; set; }
|
|
|
|
public bool CapoareaDaVerificare { get; set; }
|
|
|
|
[ForeignKey(nameof(Capoarea))]
|
|
public Guid? CapoareaId { get; set; }
|
|
public Utente Capoarea { get; set; }
|
|
} |