jellyfin/Emby.Dlna/Common/ServiceAction.cs

22 lines
400 B
C#
Raw Normal View History

2016-10-29 18:22:20 -04:00
using System.Collections.Generic;
2016-10-29 18:34:54 -04:00
namespace Emby.Dlna.Common
2016-10-29 18:22:20 -04: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>();
}
}
}