aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpClientManager/HttpClientInfo.cs
blob: 6d17bf94de11168d77979786b27973089d17224c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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; }
    }
}