jellyfin/Emby.Dlna/Common/ServiceAction.cs

25 lines
451 B
C#
Raw Normal View History

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