aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Net/WebSocketListenerState.cs
blob: 68f5c81be4dc590f9f0cf12c41af79c810500044 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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; }
    }
}