using System.Collections.Generic; namespace InABox.Core { /// /// A DataModel which by default has no special tables; that is, it consists entirely of CompanyInformation, /// CompanyLogo and User /// public class EmptyDataModel : DataModel { public override string Name => "Empty"; } }