using System.Collections.Generic; namespace MediaBrowser.Model.Themes { public class AppTheme { public string AppName { get; set; } public string Name { get; set; } public Dictionary Options { get; set; } public List Images { get; set; } public AppTheme() { Options = new Dictionary(); Images = new List(); } } }