jellyfin/Emby.Server.Implementations/HttpClientManager/HttpClientInfo.cs

19 lines
445 B
C#
Raw Normal View History

2016-10-29 01:40:15 -04:00
using System;
2017-10-14 02:52:56 -04:00
using System.Net.Http;
2016-10-29 01:40:15 -04:00
namespace Emby.Server.Implementations.HttpClientManager
2016-10-29 01:40:15 -04: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-14 02:52:56 -04:00
public HttpClient HttpClient { get; set; }
2016-10-29 01:40:15 -04:00
}
}