using System.Collections.Generic; namespace MediaBrowser.Model.LiveTv { public class LiveTvInfo { /// /// Gets or sets the services. /// /// The services. public List Services { get; set; } /// /// Gets or sets a value indicating whether this instance is enabled. /// /// true if this instance is enabled; otherwise, false. public bool IsEnabled { get; set; } /// /// Gets or sets the enabled users. /// /// The enabled users. public List EnabledUsers { get; set; } public LiveTvInfo() { Services = new List(); EnabledUsers = new List(); } } }