namespace MediaBrowser.Model.Updates
{
    /// 
    /// Class RepositoryInfo.
    /// 
    public class RepositoryInfo
    {
        /// 
        /// Gets or sets the name.
        /// 
        /// The name.
        public string? Name { get; set; }
        /// 
        /// Gets or sets the URL.
        /// 
        /// The URL.
        public string? Url { get; set; }
        /// 
        /// Gets or sets a value indicating whether the repository is enabled.
        /// 
        /// true if enabled.
        public bool Enabled { get; set; } = true;
    }
}