initial add
This commit is contained in:
16
Fab2ApprovalSystem/ViewModels/LotStatusOptionViewModel.cs
Normal file
16
Fab2ApprovalSystem/ViewModels/LotStatusOptionViewModel.cs
Normal file
@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Fab2ApprovalSystem.ViewModels
|
||||
{
|
||||
public class LotStatusOptionViewModel
|
||||
{
|
||||
public int LotStatusOptionID { get; set; }
|
||||
[Display(Name="Lot Status")]
|
||||
public string LotStatusOption { get; set; }
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user