using System; using System.Net.Http; namespace Emby.Server.Implementations.HttpClientManager { /// /// Class HttpClientInfo /// public class HttpClientInfo { /// /// Gets or sets the last timeout. /// /// The last timeout. public DateTime LastTimeout { get; set; } public HttpClient HttpClient { get; set; } } }