35 lines
920 B
C#
35 lines
920 B
C#
|
using System;
|
||
|
|
||
|
namespace MediaBrowser.Model.Syncplay
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Class SyncplayRequestInfo.
|
||
|
/// </summary>
|
||
|
public class SyncplayRequestInfo
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Gets or sets the request type.
|
||
|
/// </summary>
|
||
|
/// <value>The request type.</value>
|
||
|
public SyncplayRequestType Type;
|
||
|
|
||
|
/// <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; }
|
||
|
}
|
||
|
}
|