using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace MESClassLibrary.Model { public class PunchPlanModel { public string ID { get; set; } public string DeviceNo { get; set; } public string ProductID { get; set; } public int PlanCount { get; set; } } }