aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session/PlayRequest.cs
blob: 57f6c37f572c405870a3e747195a37c076e223ed (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
39
40
41
42
43
44
45
46
namespace MediaBrowser.Model.Session
{
    /// <summary>
    /// Class PlayRequest
    /// </summary>
    public class PlayRequest
    {
        /// <summary>
        /// Gets or sets the item ids.
        /// </summary>
        /// <value>The item ids.</value>
        public string[] ItemIds { get; set; }

        /// <summary>
        /// Gets or sets the start position ticks that the first item should be played at
        /// </summary>
        /// <value>The start position ticks.</value>
        public long? StartPositionTicks { get; set; }

        /// <summary>
        /// Gets or sets the play command.
        /// </summary>
        /// <value>The play command.</value>
        public PlayCommand PlayCommand { get; set; }
    }

    /// <summary>
    /// Enum PlayCommand
    /// </summary>
    public enum PlayCommand
    {
        /// <summary>
        /// The play now
        /// </summary>
        PlayNow,
        /// <summary>
        /// The play next
        /// </summary>
        PlayNext,
        /// <summary>
        /// The play last
        /// </summary>
        PlayLast
    }
}