mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			278 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			278 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace Jellyfin.Api.Models.SyncPlayDtos;
 | 
						|
 | 
						|
/// <summary>
 | 
						|
/// Class PingRequestDto.
 | 
						|
/// </summary>
 | 
						|
public class PingRequestDto
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Gets or sets the ping time.
 | 
						|
    /// </summary>
 | 
						|
    /// <value>The ping time.</value>
 | 
						|
    public long Ping { get; set; }
 | 
						|
}
 |