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

19 lines
442 B
C#
Raw Normal View History

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