2020-06-03 09:54:01 +00:00
|
|
|
#nullable disable
|
|
|
|
|
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 SendCommand.
|
2020-04-01 15:52:42 +00:00
|
|
|
/// </summary>
|
2020-04-15 16:03:58 +00:00
|
|
|
public class SendCommand
|
2020-04-01 15:52:42 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the group identifier.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The group identifier.</value>
|
|
|
|
public string GroupId { get; set; }
|
|
|
|
|
2020-09-24 21:04:21 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the playlist id of the playing item.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The playlist id of the playing item.</value>
|
|
|
|
public string PlaylistItemId { get; set; }
|
|
|
|
|
2020-04-01 15:52:42 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the UTC time when to execute the command.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The UTC time when to execute the command.</value>
|
|
|
|
public string 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 command.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The command.</value>
|
2020-04-15 16:03:58 +00:00
|
|
|
public SendCommandType Command { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the UTC time when this command has been emitted.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The UTC time when this command has been emitted.</value>
|
|
|
|
public string EmittedAt { get; set; }
|
2020-04-01 15:52:42 +00:00
|
|
|
}
|
|
|
|
}
|