using System; namespace DataModel.Models { /// /// DCS lot record /// public class DcsLot { /// /// Item number for lot of parts /// public string ItemNumber { get; set; } /// /// Lot number for lot of parts /// public string LotNumber { get; set; } /// /// Lot suffix for lot of parts /// public string LotSuffix { get; set; } /// /// Timestamp of last update to record /// public DateTime LastUpdateDT { get; set; } } }