EchoTex_Payroll/HRM.BO/Report/MultipleEmployeeLeaveBalance.cs

28 lines
846 B
C#
Raw Normal View History

2024-10-14 10:01:49 +06:00
using System;
using System.Collections.Generic;
using System.Text;
namespace HRM.BO.Report
{
public class MultipleEmployeeLeaveBalance: BasicBaseObject
{
public MultipleEmployeeLeaveBalance()
{
}
public string EmpNo { get; set; }
public string Name { get; set; }
public DateTime JoiningDate { get; set; }
public string Designation { get; set; }
public string Department { get; set; }
public string LeaveName { get; set; }
public int OpeningBalance { get; set; }
public int Consumed { get; set; }
public int CFDays { get; set; }
public int ClosingBalance { get; set; }
public int RowSequence { get; set; }
public string LeaveNotifier { get; set; }
public string LeaveYear { get; set; }
}
}