mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			297 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 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; }
 | 
						|
}
 |