#pragma warning disable CS1591
using System;
namespace MediaBrowser.Model.LiveTv
{
    public class LiveTvInfo
    {
        /// 
        /// Gets or sets the services.
        /// 
        /// The services.
        public LiveTvServiceInfo[] 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 string[] EnabledUsers { get; set; }
        public LiveTvInfo()
        {
            Services = Array.Empty();
            EnabledUsers = Array.Empty();
        }
    }
}