16 lines
372 B
C#
16 lines
372 B
C#
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; }
|
|
}
|
|
|
|
} |