mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-21 07:06:38 -04:00
97a02f5803
I think some people need to change their IDE configuration ;)
18 lines
310 B
C#
18 lines
310 B
C#
#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; }
|
|
}
|
|
}
|