AppTheme.cs 506 B

1234567891011121314151617181920212223
  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. }