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

27 lines
638 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HRM.BO
{
public class ScheduleMailServiceLog
{
#region Constructor
public ScheduleMailServiceLog()
{
}
#endregion
#region Properties
public int ID { get; set; }
public DateTime SentTime { get; set; }
public EnumSchedularType SchedularSetupType { get; set; }
public int EmployeeID { get; set; }
public string Remarks { get; set; }
public bool isSuccess { get; set; }
#endregion
}
}