mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-21 08:06:58 +01:00
15 lines
354 B
C#
15 lines
354 B
C#
namespace MediaBrowser.Model.SyncPlay.RequestBodies
|
|
{
|
|
/// <summary>
|
|
/// Class SeekRequestBody.
|
|
/// </summary>
|
|
public class SeekRequestBody
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the position ticks.
|
|
/// </summary>
|
|
/// <value>The position ticks.</value>
|
|
public long PositionTicks { get; set; }
|
|
}
|
|
}
|