using BMA.EHR.MetaData.Service.Models; namespace BMA.EHR.Profile.Service.Models.HR { public class ProfileSalary : EntityBase { public DateTime? Date { get; set; } public double? Amount { get; set; } public double? PositionSalaryAmount { get; set; } public Guid? OcId { get; set; } public Guid? OrganizationShortNameId { get; set; } public Guid? PositionId { get; set; } public Guid? PosNoId { get; set; } public Guid? PositionLineId { get; set; } public Guid? PositionPathSideId { get; set; } public Guid? PositionTypeId { get; set; } public PositionLevel? PositionLevel { get; set; } public Guid? PositionExecutiveId { get; set; } public Guid? PositionExecutiveSideId { get; set; } public string? SalaryClass { get; set; } public string? SalaryRef { get; set; } public virtual List ProfileSalaryHistorys { get; set; } = new List(); public virtual Profile? Profile { get; set; } } }