mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-13 22:02:20 +01:00
15 lines
410 B
C#
15 lines
410 B
C#
namespace MediaBrowser.Model.SyncPlay.RequestBodies
|
|
{
|
|
/// <summary>
|
|
/// Class IgnoreWaitRequestBody.
|
|
/// </summary>
|
|
public class IgnoreWaitRequestBody
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether the client should be ignored.
|
|
/// </summary>
|
|
/// <value>The client group-wait status.</value>
|
|
public bool IgnoreWait { get; set; }
|
|
}
|
|
}
|