mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-29 04:04:47 +03:00
43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace MediaBrowser.Model.SyncPlay.RequestBodies
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Class ReadyRequest.
|
||
|
|
/// </summary>
|
||
|
|
public class ReadyRequestBody
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Initializes a new instance of the <see cref="ReadyRequestBody"/> class.
|
||
|
|
/// </summary>
|
||
|
|
public ReadyRequestBody()
|
||
|
|
{
|
||
|
|
PlaylistItemId = string.Empty;
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Gets or sets when the request has been made by the client.
|
||
|
|
/// </summary>
|
||
|
|
/// <value>The date of the request.</value>
|
||
|
|
public DateTime When { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Gets or sets the position ticks.
|
||
|
|
/// </summary>
|
||
|
|
/// <value>The position ticks.</value>
|
||
|
|
public long PositionTicks { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Gets or sets a value indicating whether the client playback is unpaused.
|
||
|
|
/// </summary>
|
||
|
|
/// <value>The client playback status.</value>
|
||
|
|
public bool IsPlaying { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Gets or sets the playlist item identifier of the playing item.
|
||
|
|
/// </summary>
|
||
|
|
/// <value>The playlist item identifier.</value>
|
||
|
|
public string PlaylistItemId { get; set; }
|
||
|
|
}
|
||
|
|
}
|