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