aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/SyncPlayDtos/SeekRequestDto.cs
blob: f461417e9636699278e68bfa5b6ccae59978bd09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Jellyfin.Api.Models.SyncPlayDtos;

/// <summary>
/// Class SeekRequestDto.
/// </summary>
public class SeekRequestDto
{
    /// <summary>
    /// Gets or sets the position ticks.
    /// </summary>
    /// <value>The position ticks.</value>
    public long PositionTicks { get; set; }
}