jellyfin/MediaBrowser.Model/Themes/AppTheme.cs
2014-02-28 00:22:36 -05:00

30 lines
643 B
C#

using System;
using System.Collections.Generic;
namespace MediaBrowser.Model.Themes
{
public class AppTheme
{
public string AppName { 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 AppName { get; set; }
public string Name { get; set; }
}
}