mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 18:42:52 -07:00
18 lines
313 B
C#
18 lines
313 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; }
|
|
}
|
|
}
|