EchoTex_Payroll/HRM.UI/Controllers/MobileAPI/Models/OTPreApprovalTModel.cs

35 lines
1.0 KiB
C#
Raw Normal View History

2024-10-14 10:01:49 +06:00
using System;
using System.Collections.Generic;
using HRM.BO;
namespace HRM.UI.MODELS
{
public class OTPreApprovalTModel : AuditTrailBase
{
public OTPreApprovalTModel()
{
EmployeeNo = string.Empty;
EmployeeName = string.Empty;
PreApproveDate = DateTime.MinValue;
FromTime = DateTime.MinValue;
ToTime = DateTime.MinValue;
Reason = string.Empty;
PreApprovalDescription = string.Empty;
}
public int PKID { get; set; }
public int EmployeeID { get; set; }
public string EmployeeNo { get; set; }
public string EmployeeName { get; set; }
public DateTime PreApproveDate { get; set; }
public double OTHours { get; set; }
public double LMOTHours { get; set; }
public EnumWFAttnStatus WFStatus { get; set; }
public DateTime FromTime { get; set; }
public DateTime ToTime { get; set; }
public string Reason { get; set; }
public int LMID { get; set; }
public string PreApprovalDescription { get; set; }
}
}