aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/SyncPlayDtos/BufferRequestDto.cs
blob: e7613911ef1bd75c8d466c865f4f89240156c117 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using System;

namespace Jellyfin.Api.Models.SyncPlayDtos;

/// <summary>
/// Class BufferRequestDto.
/// </summary>
public class BufferRequestDto
{
    /// <summary>
    /// Initializes a new instance of the <see cref="BufferRequestDto"/> class.
    /// </summary>
    public BufferRequestDto()
    {
        PlaylistItemId = Guid.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 Guid PlaylistItemId { get; set; }
}