Files
jellyfin-jellyfin-1/MediaBrowser.Model/Session/GeneralCommand.cs

20 lines
443 B
C#
Raw Normal View History

2014-03-28 15:58:18 -04:00
using System;
using System.Collections.Generic;
namespace MediaBrowser.Model.Session
{
2014-03-31 17:04:22 -04:00
public class GeneralCommand
2014-03-28 15:58:18 -04:00
{
public string Name { get; set; }
2014-03-28 16:36:29 -04:00
public string ControllingUserId { get; set; }
2014-03-28 15:58:18 -04:00
public Dictionary<string, string> Arguments { get; set; }
2014-03-31 17:04:22 -04:00
public GeneralCommand()
2014-03-28 15:58:18 -04:00
{
Arguments = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
}
}
}