Initial
This commit is contained in:
15
StandManager.Domain/Entita/Base/EntitaBase.cs
Normal file
15
StandManager.Domain/Entita/Base/EntitaBase.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using OAService.Domain.Entita;
|
||||
|
||||
namespace StandManager.Domain.Entita.Base;
|
||||
|
||||
public class EntitaBase : BaseEntity
|
||||
{
|
||||
[ForeignKey(nameof(UtenteCreazione))]
|
||||
public override Guid? IdUtenteCreazione { get; set; }
|
||||
public virtual Utente? UtenteCreazione { get; set; }
|
||||
|
||||
[ForeignKey(nameof(UtenteModifica))]
|
||||
public override Guid? IdUtenteModifica { get; set; }
|
||||
public virtual Utente? UtenteModifica { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user