23 lines
No EOL
607 B
C#
23 lines
No EOL
607 B
C#
using BMA.EHR.Domain.Models.Base;
|
|
|
|
namespace BMA.EHR.Domain.Models.HR
|
|
{
|
|
public class ProfileLeaveSummary : EntityBase
|
|
{
|
|
public virtual Profile? Profile { get; set; }
|
|
|
|
public int LeaveYear { get; set; } = 0;
|
|
|
|
public string? SumSick { get; set; } = string.Empty;
|
|
|
|
public string? SumRest { get; set; } = string.Empty;
|
|
|
|
public string? SumLate { get; set; } = string.Empty;
|
|
|
|
public string? SumAbsent { get; set; } = string.Empty;
|
|
|
|
public string? SumEducation { get; set; } = string.Empty;
|
|
|
|
public bool IsActive { get; set; } = true;
|
|
}
|
|
} |