HttpClientInfo.cs 442 B

123456789101112131415161718
  1. using System;
  2. using System.Net.Http;
  3. namespace Emby.Server.Implementations.HttpClientManager
  4. {
  5. /// <summary>
  6. /// Class HttpClientInfo
  7. /// </summary>
  8. public class HttpClientInfo
  9. {
  10. /// <summary>
  11. /// Gets or sets the last timeout.
  12. /// </summary>
  13. /// <value>The last timeout.</value>
  14. public DateTime LastTimeout { get; set; }
  15. public HttpClient HttpClient { get; set; }
  16. }
  17. }