2019-01-13 12:54:44 -07:00
|
|
|
using System;
|
2017-10-13 23:52:56 -07:00
|
|
|
using System.Net.Http;
|
2016-10-28 22:40:15 -07:00
|
|
|
|
2017-08-15 23:43:41 -07:00
|
|
|
namespace Emby.Server.Implementations.HttpClientManager
|
2016-10-28 22:40:15 -07:00
|
|
|
{
|
|
|
|
/// <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; }
|
2017-10-13 23:52:56 -07:00
|
|
|
public HttpClient HttpClient { get; set; }
|
2016-10-28 22:40:15 -07:00
|
|
|
}
|
|
|
|
}
|