Files
jellyfin-jellyfin-1/MediaBrowser.Model/Themes/AppTheme.cs

24 lines
506 B
C#
Raw Normal View History

2014-02-27 23:49:02 -05:00
using System;
using System.Collections.Generic;
namespace MediaBrowser.Model.Themes
{
public class AppTheme
{
2014-02-28 00:22:36 -05:00
public string AppName { get; set; }
2014-02-27 23:49:02 -05:00
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>();
}
}
}