27 lines
638 B
C#
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
|
|||
|
}
|
|||
|
}
|