2016-10-29 22:22:20 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2016-10-29 22:34:54 +00:00
|
|
|
|
namespace Emby.Dlna.Common
|
2016-10-29 22:22:20 +00:00
|
|
|
|
{
|
|
|
|
|
public class ServiceAction
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<Argument> ArgumentList { get; set; }
|
|
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
|
{
|
|
|
|
|
return Name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ServiceAction()
|
|
|
|
|
{
|
|
|
|
|
ArgumentList = new List<Argument>();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|