namespace MediaBrowser.Model.Syncplay { /// /// Class SyncplayCommand. /// public class SyncplayCommand { /// /// Gets or sets the group identifier. /// /// The group identifier. public string GroupId { get; set; } /// /// Gets or sets the UTC time when to execute the command. /// /// The UTC time when to execute the command. public string When { get; set; } /// /// Gets or sets the position ticks. /// /// The position ticks. public long? PositionTicks { get; set; } /// /// Gets or sets the command. /// /// The command. public SyncplayCommandType Command { get; set; } } }