jellyfin/MediaBrowser.Model/SyncPlay/PlaybackRequest.cs

35 lines
925 B
C#
Raw Normal View History

2020-04-01 17:52:42 +02:00
using System;
2020-05-06 23:42:53 +02:00
namespace MediaBrowser.Model.SyncPlay
2020-04-01 17:52:42 +02:00
{
/// <summary>
/// Class PlaybackRequest.
2020-04-01 17:52:42 +02:00
/// </summary>
public class PlaybackRequest
2020-04-01 17:52:42 +02:00
{
/// <summary>
/// Gets or sets the request type.
/// </summary>
/// <value>The request type.</value>
2020-05-04 19:46:02 +02:00
public PlaybackRequestType Type { get; set; }
2020-04-01 17:52:42 +02:00
/// <summary>
/// Gets or sets when the request has been made by the client.
/// </summary>
/// <value>The date of the request.</value>
public DateTime? When { get; set; }
/// <summary>
/// Gets or sets the position ticks.
/// </summary>
/// <value>The position ticks.</value>
public long? PositionTicks { get; set; }
/// <summary>
/// Gets or sets the ping time.
/// </summary>
/// <value>The ping time.</value>
public long? Ping { get; set; }
}
}