aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Themes/AppTheme.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Themes/AppTheme.cs')
-rw-r--r--MediaBrowser.Model/Themes/AppTheme.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Themes/AppTheme.cs b/MediaBrowser.Model/Themes/AppTheme.cs
new file mode 100644
index 000000000..a0532854d
--- /dev/null
+++ b/MediaBrowser.Model/Themes/AppTheme.cs
@@ -0,0 +1,30 @@
+using System;
+using System.Collections.Generic;
+
+namespace MediaBrowser.Model.Themes
+{
+ public class AppTheme
+ {
+ public string ApplicationName { get; set; }
+
+ public string Name { get; set; }
+
+ public Dictionary<string, string> Options { get; set; }
+
+ public List<ThemeImage> Images { get; set; }
+
+ public AppTheme()
+ {
+ Options = new Dictionary<string, string>(StringComparer.Ordinal);
+
+ Images = new List<ThemeImage>();
+ }
+ }
+
+ public class AppThemeInfo
+ {
+ public string ApplicationName { get; set; }
+
+ public string Name { get; set; }
+ }
+}