aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpClientManager/HttpClientInfo.cs
blob: 21cec9d2be6a7f41ad1ff4d391b0232f4b0f3f4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Net.Http;

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; }
        public HttpClient HttpClient { get; set; }
    }
}