jellyfin-server/Emby.Dlna/Common/ServiceAction.cs

25 lines
451 B
C#
Raw Normal View History

#pragma warning disable CS1591
using System.Collections.Generic;
2016-10-29 22:22:20 +00:00
2016-10-29 22:34:54 +00:00
namespace Emby.Dlna.Common
2016-10-29 22:22:20 +00:00
{
public class ServiceAction
{
public ServiceAction()
{
ArgumentList = new List<Argument>();
}
2016-10-29 22:22:20 +00:00
public string Name { get; set; }
2020-08-20 19:04:57 +00:00
public List<Argument> ArgumentList { get; }
2016-10-29 22:22:20 +00:00
/// <inheritdoc />
2016-10-29 22:22:20 +00:00
public override string ToString()
{
return Name;
}
}
}