EchoTex_Payroll/HRM.BO/Leave/LeaveLedgerMobile.cs

26 lines
664 B
C#
Raw Permalink Normal View History

2024-10-14 10:01:49 +06:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Ease.Core;
using Ease.Core.Model;
using System.Data;
using HRM.BO.Configuration;
namespace HRM.BO
{
public class LeaveLedgerMobile : AuditTrailBase
{
public string employeeNo { get; set; }
public string employeeName { get; set; }
public string LeaveName { get; set; }
public DateTime LeaveDate { get; set; }
public DateTime FromDate { get; set; }
public DateTime ToDate { get; set; }
public double TotalDays { get; set; }
public string Reason { get; set; }
}
}