2019-01-13 20:02:23 +00:00
|
|
|
using System;
|
2019-01-13 19:26:15 +00:00
|
|
|
using System.Collections.Generic;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Session
|
|
|
|
{
|
|
|
|
public class GeneralCommand
|
|
|
|
{
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
public Guid ControllingUserId { get; set; }
|
|
|
|
|
|
|
|
public Dictionary<string, string> Arguments { get; set; }
|
|
|
|
|
|
|
|
public GeneralCommand()
|
|
|
|
{
|
|
|
|
Arguments = new Dictionary<string, string>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|