Files
jellyfin-jellyfin-1/Emby.Server.Implementations/HttpClientManager/HttpClientInfo.cs
2017-08-16 02:43:41 -04:00

17 lines
371 B
C#

using System;
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; }
}
}