jellyfin/MediaBrowser.Model/Session/GeneralCommand.cs
2014-06-29 15:59:52 -04:00

19 lines
397 B
C#

using System.Collections.Generic;
namespace MediaBrowser.Model.Session
{
public class GeneralCommand
{
public string Name { get; set; }
public string ControllingUserId { get; set; }
public Dictionary<string, string> Arguments { get; set; }
public GeneralCommand()
{
Arguments = new Dictionary<string, string>();
}
}
}