18 lines
422 B
C#
18 lines
422 B
C#
// <copyright file="PingRequestDto.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
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; }
|
|
}
|