2023-01-31 11:18:10 +00:00
|
|
|
namespace Jellyfin.Api.Models.SyncPlayDtos;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Class PingRequestDto.
|
|
|
|
/// </summary>
|
|
|
|
public class PingRequestDto
|
2020-11-28 13:19:24 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2023-01-31 11:18:10 +00:00
|
|
|
/// Gets or sets the ping time.
|
2020-11-28 13:19:24 +00:00
|
|
|
/// </summary>
|
2023-01-31 11:18:10 +00:00
|
|
|
/// <value>The ping time.</value>
|
|
|
|
public long Ping { get; set; }
|
2020-11-28 13:19:24 +00:00
|
|
|
}
|