aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Syncplay/SendCommand.cs
blob: d9f3914030c55fbab1f35b56c7af95adfd608f72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
namespace MediaBrowser.Model.Syncplay
{
    /// <summary>
    /// Class SendCommand.
    /// </summary>
    public class SendCommand
    {
        /// <summary>
        /// Gets or sets the group identifier.
        /// </summary>
        /// <value>The group identifier.</value>
        public string GroupId { get; set; }

        /// <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>
        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; }
    }
}