jellyfin/Emby.Dlna/Common/ServiceAction.cs
2016-10-29 18:34:54 -04:00

22 lines
400 B
C#

using System.Collections.Generic;
namespace Emby.Dlna.Common
{
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>();
}
}
}