12 lines
361 B
C#
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>();
|
|
} |