jellyfin/MediaBrowser.Model/Session/GeneralCommand.cs

19 lines
397 B
C#
Raw Normal View History

2014-06-29 21:59:52 +02:00
using System.Collections.Generic;
2014-03-28 20:58:18 +01:00
namespace MediaBrowser.Model.Session
{
2014-03-31 23:04:22 +02:00
public class GeneralCommand
2014-03-28 20:58:18 +01:00
{
public string Name { get; set; }
2014-03-28 21:36:29 +01:00
public string ControllingUserId { get; set; }
2014-03-28 20:58:18 +01:00
public Dictionary<string, string> Arguments { get; set; }
2014-03-31 23:04:22 +02:00
public GeneralCommand()
2014-03-28 20:58:18 +01:00
{
2014-06-29 21:59:52 +02:00
Arguments = new Dictionary<string, string>();
2014-03-28 20:58:18 +01:00
}
}
}