EchoTex_Payroll/HRM.UI/Controllers/MobileAPI/Models/NotificationTModel.cs
2024-10-14 10:01:49 +06:00

27 lines
646 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using HRM.BO;
namespace HRM.UI.MODELS
{
public class NotificationTModel : AuditTrailBase
{
public NotificationTModel()
{
Description = string.Empty;
Module = string.Empty;
OperationDate = DateTime.MinValue;
}
public int PKID { get; set; }
public int UserID { get; set; }
public int ObjectID { get; set; }
public string Description { get; set; }
public string Module { get; set; }
public DateTime OperationDate { get; set; }
public bool IsPendingJob { get { return false; } }
}
}