using System; namespace DataModel.Models { /// /// JDE lot location model /// public class LotLocation { /// /// Lot unique number /// public string LotNumber { get; set; } /// /// Short item number /// public long ShortItemNumber { get; set; } /// /// Business unit unique code /// public string BranchCode { get; set; } /// /// Location code for where lot is located /// public string Location { get; set; } /// /// Timestamp of last update to record /// public DateTime LastUpdateDT { get; set; } } }