using System; namespace DataModel.Models { /// /// Generic JDE business unit /// interface IBusinessUnit { /// /// Business unit unique code /// string Code { get; set; } /// /// Business unit description /// string Description { get; set; } /// /// Timestamp of last update to business unit /// DateTime LastUpdateDT { get; } } }