using System.Collections.Generic; namespace Emby.Dlna.Common { /// /// Defines the . /// public class ServiceAction { /// /// Initializes a new instance of the class. /// public ServiceAction() { ArgumentList = new List(); } /// /// Gets or sets the name of the action. /// public string Name { get; set; } = string.Empty; /// /// Gets the ArgumentList. /// public List ArgumentList { get; } /// public override string ToString() => Name; } }