aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/ApiClient/GeneralCommandEventArgs.cs
blob: 3c0b09da8f168b9374285251b303ecf2c8182d36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using MediaBrowser.Model.Session;

namespace MediaBrowser.Model.ApiClient
{
    /// <summary>
    /// Class SystemCommandEventArgs
    /// </summary>
    public class GeneralCommandEventArgs
    {
        /// <summary>
        /// Gets or sets the command.
        /// </summary>
        /// <value>The command.</value>
        public GeneralCommand Command { get; set; }

        /// <summary>
        /// Gets or sets the type of the known command.
        /// </summary>
        /// <value>The type of the known command.</value>
        public GeneralCommandType? KnownCommandType { get; set; }
    }
}