19 lines
503 B
C#
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; }
|
|||
|
}
|
|||
|
}
|