Merge pull request #7380 from crobibero/general-command

This commit is contained in:
Bond-009 2022-03-03 13:55:33 +01:00 committed by GitHub
commit 2dbb32976c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,20 +2,26 @@
using System;
using System.Collections.Generic;
using System.Text.Json.Serialization;
namespace MediaBrowser.Model.Session
namespace MediaBrowser.Model.Session;
public class GeneralCommand
{
public class GeneralCommand
public GeneralCommand()
: this(new Dictionary<string, string>())
{
public GeneralCommand()
{
Arguments = new Dictionary<string, string>();
}
public GeneralCommandType Name { get; set; }
public Guid ControllingUserId { get; set; }
public Dictionary<string, string> Arguments { get; }
}
[JsonConstructor]
public GeneralCommand(Dictionary<string, string> arguments)
{
Arguments = arguments;
}
public GeneralCommandType Name { get; set; }
public Guid ControllingUserId { get; set; }
public Dictionary<string, string> Arguments { get; }
}