23 lines
658 B
C#
23 lines
658 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace Fab2ApprovalSystem.Models
|
|
{
|
|
public class ApproveListModel
|
|
{
|
|
public int ApprovalKey { get; set; }
|
|
public int IssueID { get; set; }
|
|
public string AssignedName { get; set; }
|
|
public string AssignedEmail { get; set; }
|
|
public string AssignedFullName { get; set; }
|
|
public DateTime LastNotification { get; set; }
|
|
public DateTime AssignedDate { get; set; }
|
|
public DateTime RoleAssignedDate { get; set; }
|
|
public string DocType { get; set; }
|
|
public string Title { get; set; }
|
|
|
|
}
|
|
}
|