26ff8d9b4f
Set up repository with legacy .NET Framework 4.8 source (OLD/), new .NET 10 Blazor solution (NEW/), OpenSpec specifications, documentation, and project configuration.
26 lines
566 B
C#
Executable File
26 lines
566 B
C#
Executable File
using System;
|
|
|
|
namespace DataModel.Models
|
|
{
|
|
/// <summary>
|
|
/// Generic JDE business unit
|
|
/// </summary>
|
|
interface IBusinessUnit
|
|
{
|
|
/// <summary>
|
|
/// Business unit unique code
|
|
/// </summary>
|
|
string Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// Business unit description
|
|
/// </summary>
|
|
string Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// Timestamp of last update to business unit
|
|
/// </summary>
|
|
DateTime LastUpdateDT { get; }
|
|
}
|
|
}
|