You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
925 B
35 lines
925 B
5 years ago
|
using System;
|
||
|
|
||
5 years ago
|
namespace MediaBrowser.Model.SyncPlay
|
||
5 years ago
|
{
|
||
|
/// <summary>
|
||
5 years ago
|
/// Class PlaybackRequest.
|
||
5 years ago
|
/// </summary>
|
||
5 years ago
|
public class PlaybackRequest
|
||
5 years ago
|
{
|
||
|
/// <summary>
|
||
|
/// Gets or sets the request type.
|
||
|
/// </summary>
|
||
|
/// <value>The request type.</value>
|
||
5 years ago
|
public PlaybackRequestType Type { get; set; }
|
||
5 years ago
|
|
||
|
/// <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; }
|
||
|
}
|
||
|
}
|