jellyfin/Emby.Dlna/Common/Argument.cs

24 lines
697 B
C#
Raw Normal View History

2016-10-30 00:34:54 +02:00
namespace Emby.Dlna.Common
2019-01-08 00:27:46 +01:00
{
2020-09-13 14:49:11 +02:00
/// <summary>
2020-11-18 14:23:45 +01:00
/// DLNA Query parameter type, used when querying DLNA devices via SOAP.
2020-09-13 14:49:11 +02:00
/// </summary>
2016-10-30 00:22:20 +02:00
public class Argument
{
2020-09-13 14:49:11 +02:00
/// <summary>
/// Gets or sets name of the DLNA argument.
/// </summary>
public string Name { get; set; } = string.Empty;
2016-10-30 00:22:20 +02:00
2020-09-13 14:49:11 +02:00
/// <summary>
/// Gets or sets the direction of the parameter.
/// </summary>
public string Direction { get; set; } = string.Empty;
2016-10-30 00:22:20 +02:00
2020-09-13 14:49:11 +02:00
/// <summary>
/// Gets or sets the related DLNA state variable for this argument.
/// </summary>
public string RelatedStateVariable { get; set; } = string.Empty;
2016-10-30 00:22:20 +02:00
}
}