using System; using System.Collections.Generic; namespace MediaBrowser.Controller.Entities { /// /// Interface IHasThemeMedia /// public interface IHasThemeMedia { /// /// Gets or sets the theme song ids. /// /// The theme song ids. List ThemeSongIds { get; set; } /// /// Gets or sets the theme video ids. /// /// The theme video ids. List ThemeVideoIds { get; set; } } }