using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tiger.Model { public class SNInfo { public string Vechicle_ID { get; set; } public string JiBanSN { get; set; } public string TID { get; set; } public bool IsPass { get; set; } public List WipSnList { get; set; } = new List(); public List SnList { get; set; } = new List(); public List VechicleList { get; set; } = new List(); } }