mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
23 lines
470 B
C#
23 lines
470 B
C#
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>();
|
|
|
|
Images = new List<ThemeImage>();
|
|
}
|
|
}
|
|
}
|