mesa-fab-approval/Fab2ApprovalSystem/ViewModels/LotDispositionViewModel.cs
2023-03-06 15:05:38 -07:00

42 lines
1.3 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Web;
namespace Fab2ApprovalSystem.ViewModels
{
public class IssuesViewModel
{
[Display(Name = "Document Type")]
public string DocumentType { get; set; }
[Display(Name = "Sub Category")]
public string SubDoc { get; set; }
[Display(Name = "Issue#")]
public int IssueID { get; set; }
public int DocID { get; set; }
public string Title { get; set; }
public string IssueDescription { get; set; }
public string LotNos { get; set; }
public DateTime? IssueDate { get; set; }
[Display(Name = "Submit Date")]
[DisplayFormat(DataFormatString = "{0:MM/dd/yyyy}")]
public DateTime? SubmitedDate { get; set; }
public DateTime? CloseDate { get; set; }
public string Originator { get; set; }
public string ScrapDescription { get; set; }
public string PendingApprovers { get; set; }
public int ItemStatus { get; set; }
public DateTime? ExpirationDate { get; set; }
[DisplayFormat(DataFormatString = "{0:MM/dd/yyyy}")]
public DateTime? ExtensionDate { get; set; }
public DateTime? NextDueDate { get; set; }
}
}