EchoTex_Payroll/HRM.UI/Controllers/MobileAPI/Models/LeaveTModel.cs
2024-10-14 10:01:49 +06:00

31 lines
645 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using HRM.BO;
namespace HRM.UI.MODELS
{
public class LeaveTModel : AuditTrailBase
{
public LeaveTModel()
{
Code = string.Empty;
Description = string.Empty;
}
public int PKID { get; set; }
public string Code { get; set; }
public string Description { get; set; }
public bool DependsOnHoliday { get; set; }
public bool IsHalfDayLeave { get; set; }
public bool IsLFA { get; set; }
public bool IsAttachmentNeeded { get; set; }
public int AttachmentMaxDays { get; set; }
}
}