aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Net/NamedClient.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Common/Net/NamedClient.cs')
-rw-r--r--MediaBrowser.Common/Net/NamedClient.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Net/NamedClient.cs b/MediaBrowser.Common/Net/NamedClient.cs
new file mode 100644
index 000000000..0f6161c32
--- /dev/null
+++ b/MediaBrowser.Common/Net/NamedClient.cs
@@ -0,0 +1,18 @@
+namespace MediaBrowser.Common.Net
+{
+ /// <summary>
+ /// Registered http client names.
+ /// </summary>
+ public static class NamedClient
+ {
+ /// <summary>
+ /// Gets the value for the default named http client.
+ /// </summary>
+ public const string Default = nameof(Default);
+
+ /// <summary>
+ /// Gets the value for the MusicBrainz named http client.
+ /// </summary>
+ public const string MusicBrainz = nameof(MusicBrainz);
+ }
+}