2020-11-28 13:19:24 +00:00
|
|
|
using System;
|
|
|
|
|
2020-12-03 18:01:57 +00:00
|
|
|
namespace Jellyfin.Api.Models.SyncPlayDtos
|
2020-11-28 13:19:24 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Class ReadyRequest.
|
|
|
|
/// </summary>
|
2020-12-03 18:01:57 +00:00
|
|
|
public class ReadyRequestDto
|
2020-11-28 13:19:24 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-12-03 18:01:57 +00:00
|
|
|
/// Initializes a new instance of the <see cref="ReadyRequestDto"/> class.
|
2020-11-28 13:19:24 +00:00
|
|
|
/// </summary>
|
2020-12-03 18:01:57 +00:00
|
|
|
public ReadyRequestDto()
|
2020-11-28 13:19:24 +00:00
|
|
|
{
|
2020-12-04 19:15:16 +00:00
|
|
|
PlaylistItemId = Guid.Empty;
|
2020-11-28 13:19:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <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>
|
2020-12-04 19:15:16 +00:00
|
|
|
public Guid PlaylistItemId { get; set; }
|
2020-11-28 13:19:24 +00:00
|
|
|
}
|
|
|
|
}
|