aboutsummaryrefslogtreecommitdiff
path: root/Emby.Common.Implementations/HttpClientManager/HttpClientInfo.cs
blob: ca481b33e76e4ab2ae3b0d8fef49c8fe7a7c188e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

namespace Emby.Common.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; }
    }
}