mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-20 04:18:51 -07:00
15 lines
335 B
C#
15 lines
335 B
C#
|
namespace MediaBrowser.Model.SyncPlay.RequestBodies
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Class PingRequestBody.
|
||
|
/// </summary>
|
||
|
public class PingRequestBody
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Gets or sets the ping time.
|
||
|
/// </summary>
|
||
|
/// <value>The ping time.</value>
|
||
|
public long Ping { get; set; }
|
||
|
}
|
||
|
}
|