jellyfin/MediaBrowser.Model/Themes/AppTheme.cs

23 lines
470 B
C#
Raw Normal View History

2014-06-29 21:59:52 +02:00
using System.Collections.Generic;
2014-02-28 05:49:02 +01:00
namespace MediaBrowser.Model.Themes
{
public class AppTheme
{
2014-02-28 06:22:36 +01:00
public string AppName { get; set; }
2014-02-28 05:49:02 +01:00
public string Name { get; set; }
public Dictionary<string, string> Options { get; set; }
public List<ThemeImage> Images { get; set; }
public AppTheme()
{
2014-06-29 21:59:52 +02:00
Options = new Dictionary<string, string>();
2014-02-28 05:49:02 +01:00
Images = new List<ThemeImage>();
}
}
}