namespace MediaBrowser.Common.Net
{
    /// 
    /// Registered http client names.
    /// 
    public static class NamedClient
    {
        /// 
        /// Gets the value for the default named http client.
        /// 
        public const string Default = nameof(Default);
        /// 
        /// Gets the value for the MusicBrainz named http client.
        /// 
        public const string MusicBrainz = nameof(MusicBrainz);
    }
}