28 lines
846 B
C#
28 lines
846 B
C#
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; }
|
|
}
|
|
}
|