2020-04-01 15:52:42 +00:00
|
|
|
using System;
|
|
|
|
|
2020-05-06 21:42:53 +00:00
|
|
|
namespace MediaBrowser.Model.SyncPlay
|
2020-04-01 15:52:42 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2020-04-15 16:03:58 +00:00
|
|
|
/// Class PlaybackRequest.
|
2020-04-01 15:52:42 +00:00
|
|
|
/// </summary>
|
2020-04-15 16:03:58 +00:00
|
|
|
public class PlaybackRequest
|
2020-04-01 15:52:42 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the request type.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The request type.</value>
|
2020-05-04 17:46:02 +00:00
|
|
|
public PlaybackRequestType Type { get; set; }
|
2020-04-01 15:52:42 +00: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; }
|
|
|
|
}
|
|
|
|
}
|