26ff8d9b4f
Set up repository with legacy .NET Framework 4.8 source (OLD/), new .NET 10 Blazor solution (NEW/), OpenSpec specifications, documentation, and project configuration.
36 lines
857 B
C#
Executable File
36 lines
857 B
C#
Executable File
using System;
|
|
|
|
namespace DataModel.Models
|
|
{
|
|
/// <summary>
|
|
/// JDE lot location model
|
|
/// </summary>
|
|
public class LotLocation
|
|
{
|
|
/// <summary>
|
|
/// Lot unique number
|
|
/// </summary>
|
|
public string LotNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// Short item number
|
|
/// </summary>
|
|
public long ShortItemNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// Business unit unique code
|
|
/// </summary>
|
|
public string BranchCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// Location code for where lot is located
|
|
/// </summary>
|
|
public string Location { get; set; }
|
|
|
|
/// <summary>
|
|
/// Timestamp of last update to record
|
|
/// </summary>
|
|
public DateTime LastUpdateDT { get; set; }
|
|
}
|
|
}
|