Files
amrez-nova-eop-services-api/AMREZ.EOP.Domain/Entities/HumanResources/Position.cs
Thanakarn Klangkasame 563a341a99 Add Login Module
2025-10-02 11:18:44 +07:00

12 lines
361 B
C#

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