CatalogTheme.cs 231 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ControlCatalog.Models
  5. {
  6. public enum CatalogTheme
  7. {
  8. FluentLight,
  9. FluentDark,
  10. DefaultLight,
  11. DefaultDark
  12. }
  13. }