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