jellyfin/Emby.Dlna/Common/ServiceAction.cs

32 lines
786 B
C#
Raw Normal View History

using System.Collections.Generic;
2016-10-29 18:22:20 -04:00
2016-10-29 18:34:54 -04:00
namespace Emby.Dlna.Common
2016-10-29 18:22:20 -04:00
{
2020-09-13 08:49:11 -04:00
/// <summary>
/// Defines the <see cref="ServiceAction" />.
/// </summary>
2016-10-29 18:22:20 -04:00
public class ServiceAction
{
2020-09-13 08:49:11 -04:00
/// <summary>
/// Initializes a new instance of the <see cref="ServiceAction"/> class.
/// </summary>
public ServiceAction()
{
ArgumentList = new List<Argument>();
}
2020-09-13 08:49:11 -04:00
/// <summary>
/// Gets or sets the name of the action.
/// </summary>
public string Name { get; set; } = string.Empty;
2016-10-29 18:22:20 -04:00
2020-09-13 08:49:11 -04:00
/// <summary>
/// Gets the ArgumentList.
/// </summary>
2020-08-20 15:04:57 -04:00
public List<Argument> ArgumentList { get; }
2016-10-29 18:22:20 -04:00
/// <inheritdoc />
2020-09-13 08:49:11 -04:00
public override string ToString() => Name;
2016-10-29 18:22:20 -04:00
}
}