EchoTex_Payroll/HRM.BO/Leave/LeaveHistory.cs
2024-10-14 10:01:49 +06:00

19 lines
503 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace HRM.BO
{
public class LeaveHistory
{
public int TranID { get; set; }
public string Remarks { get; set; }
public string Description { get; set; }
public string AppLeaveDate { get; set; }
public string AprFromDate { get; set; }
public string AprToDate { get; set; }
public int AprTotalDays { get; set; }
public string LeaveStatus { get; set; }
}
}