mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 17:13:38 +01:00
13 lines
297 B
C#
13 lines
297 B
C#
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; }
|
|
}
|