aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/SyncPlayDtos/PingRequestDto.cs
blob: f133950575dad3be3d0f24a55b22b602e28665ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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; }
}