aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpClientManager/HttpClientInfo.cs
diff options
context:
space:
mode:
authorAnthony Lavado <anthonylavado@users.noreply.github.com>2019-07-04 14:51:24 -0400
committerGitHub <noreply@github.com>2019-07-04 14:51:24 -0400
commitab34a95142e0a9be1680c5f0d27cb4b5e13b1901 (patch)
treef0e8613637a1d26811ee476f527a935373a46b76 /Emby.Server.Implementations/HttpClientManager/HttpClientInfo.cs
parent0ee40cb636b6e667fe62f60c1c36cb2a202be589 (diff)
parent7eb94e967471065009d82985129c3d722b386e1f (diff)
Merge pull request #1473 from DrPandemic/apply-deprecation-WebRequest-on-10.3.z
Apply deprecation web request on 10.3.z
Diffstat (limited to 'Emby.Server.Implementations/HttpClientManager/HttpClientInfo.cs')
-rw-r--r--Emby.Server.Implementations/HttpClientManager/HttpClientInfo.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/Emby.Server.Implementations/HttpClientManager/HttpClientInfo.cs b/Emby.Server.Implementations/HttpClientManager/HttpClientInfo.cs
deleted file mode 100644
index f747b01b9..000000000
--- a/Emby.Server.Implementations/HttpClientManager/HttpClientInfo.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-using System;
-using System.Net.Http;
-
-namespace Emby.Server.Implementations.HttpClientManager
-{
- /// <summary>
- /// Class HttpClientInfo
- /// </summary>
- public class HttpClientInfo
- {
- /// <summary>
- /// Gets or sets the last timeout.
- /// </summary>
- /// <value>The last timeout.</value>
- public DateTime LastTimeout { get; set; }
- public HttpClient HttpClient { get; set; }
- }
-}