aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/SyncPlayDtos/SeekRequestDto.cs
blob: b9af0be7ffbaec51a15b3138ced792c88ef49245 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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; }
    }
}