AppTheme.cs 643 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Model.Themes
  4. {
  5. public class AppTheme
  6. {
  7. public string AppName { get; set; }
  8. public string Name { get; set; }
  9. public Dictionary<string, string> Options { get; set; }
  10. public List<ThemeImage> Images { get; set; }
  11. public AppTheme()
  12. {
  13. Options = new Dictionary<string, string>(StringComparer.Ordinal);
  14. Images = new List<ThemeImage>();
  15. }
  16. }
  17. public class AppThemeInfo
  18. {
  19. public string AppName { get; set; }
  20. public string Name { get; set; }
  21. }
  22. }