using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Web;
|
|
namespace VueWebCoreApi.Models
|
{
|
public class AdvancedSchedAlready
|
{
|
public string eqp_code { get; set; }
|
public string time_start { get; set; }
|
public string time_end { get; set; }
|
public string status { get; set; }
|
public string alloc_qty { get; set; }
|
public string part_name { get; set; }
|
}
|
}
|