using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AGV_WPF.Model { public class ReleaseInfo { public int AgvCode { get; set; } public string Station { get; set; } = string.Empty; public string ReleaseType { get; set; } public DateTime CreateTime { get; set; } } public class ReleaseInfo2 { public string StationID { get; set; } = string.Empty; } public class ReleaseInfo3 { public string boxParts { get; set; } = string.Empty; public string boxPartsName { get; set; } = string.Empty; public string taskNo { get; set; } = string.Empty; public string trigger { get; set; } = string.Empty; } }