You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
506 B
24 lines
506 B
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>();
|
|
}
|
|
}
|
|
}
|