diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-10-30 03:29:27 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-30 03:29:27 -0400 |
| commit | d31b0f7be4b14e4ada999c97e675b856ad68352b (patch) | |
| tree | a4619513efbb3be62a6204c996526df606cb62c5 /Emby.Common.Implementations/HttpClientManager/HttpClientInfo.cs | |
| parent | b19f75fcae017cb51f1e58eb2d54ca84620b6ee0 (diff) | |
| parent | 3094cd7ff3e51578808ce1b6f56b141930c18004 (diff) | |
Merge pull request #2258 from MediaBrowser/dev
Dev
Diffstat (limited to 'Emby.Common.Implementations/HttpClientManager/HttpClientInfo.cs')
| -rw-r--r-- | Emby.Common.Implementations/HttpClientManager/HttpClientInfo.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Emby.Common.Implementations/HttpClientManager/HttpClientInfo.cs b/Emby.Common.Implementations/HttpClientManager/HttpClientInfo.cs new file mode 100644 index 000000000..ca481b33e --- /dev/null +++ b/Emby.Common.Implementations/HttpClientManager/HttpClientInfo.cs @@ -0,0 +1,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; } + } +} |
