using AMREZ.EOP.Domain.Entities.Common; namespace AMREZ.EOP.Domain.Entities.HumanResources; public sealed class Position : BaseEntity { public Guid TenantId { get; set; } public string Code { get; set; } = default!; public string Title { get; set; } = default!; public int? Level { get; set; } public ICollection Profiles { get; set; } = new List(); }