using Quadarax.Application.QLiberace.Base.Entities.Interfaces; using Quadarax.Application.QLiberace.Common.Entities.Base; namespace Quadarax.Application.QLiberace.Base.Entities { public class User : QlbrcEntityTracked, IStructUser { public string LoginName { get; set; } = null!; public bool IsLocked { get; set; } public virtual ICollection Tenants { get; set; } public User() { Tenants = new List(); } } }