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