diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-06-06 09:16:41 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-06 17:16:41 +0200 |
| commit | d461e3912a1dfb59a22234e434497b72834de66b (patch) | |
| tree | f55962cf8426c05f4daf4eacc6922fba353970d1 /MediaBrowser.Controller/Net/WebSocketListenerState.cs | |
| parent | 9154f20b3404fb818b8c2e74af038547d2c16c40 (diff) | |
Remove warninigs from MediaBrowser.Controller (Part 3) (#6078)
Co-authored-by: Bond-009 <bond.009@outlook.com>
Diffstat (limited to 'MediaBrowser.Controller/Net/WebSocketListenerState.cs')
| -rw-r--r-- | MediaBrowser.Controller/Net/WebSocketListenerState.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Net/WebSocketListenerState.cs b/MediaBrowser.Controller/Net/WebSocketListenerState.cs new file mode 100644 index 000000000..70604d60a --- /dev/null +++ b/MediaBrowser.Controller/Net/WebSocketListenerState.cs @@ -0,0 +1,17 @@ +#nullable disable + +#pragma warning disable CS1591 + +using System; + +namespace MediaBrowser.Controller.Net +{ + public class WebSocketListenerState + { + public DateTime DateLastSendUtc { get; set; } + + public long InitialDelayMs { get; set; } + + public long IntervalMs { get; set; } + } +}
\ No newline at end of file |
