EmptyDataModel.cs 355 B

1234567891011121314
  1. using System.Collections.Generic;
  2. namespace InABox.Core
  3. {
  4. /// <summary>
  5. /// A DataModel which by default has no special tables; that is, it consists entirely of CompanyInformation,
  6. /// CompanyLogo and User
  7. /// </summary>
  8. public class EmptyDataModel : DataModel
  9. {
  10. public override string Name => "Empty";
  11. }
  12. }