aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Themes/AppTheme.cs
blob: 527f1de7283319dfd97e9d5f443a73f8c4b850aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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>();
        }
    }
}