using System;
namespace Jellyfin.Api.Models.SyncPlayDtos;
/// 
/// Class BufferRequestDto.
/// 
public class BufferRequestDto
{
    /// 
    /// Initializes a new instance of the  class.
    /// 
    public BufferRequestDto()
    {
        PlaylistItemId = Guid.Empty;
    }
    /// 
    /// Gets or sets when the request has been made by the client.
    /// 
    /// The date of the request.
    public DateTime When { get; set; }
    /// 
    /// Gets or sets the position ticks.
    /// 
    /// The position ticks.
    public long PositionTicks { get; set; }
    /// 
    /// Gets or sets a value indicating whether the client playback is unpaused.
    /// 
    /// The client playback status.
    public bool IsPlaying { get; set; }
    /// 
    /// Gets or sets the playlist item identifier of the playing item.
    /// 
    /// The playlist item identifier.
    public Guid PlaylistItemId { get; set; }
}