namespace Emby.Dlna.Common
{
///
/// DLNA Query parameter type, used when querying DLNA devices via SOAP.
///
public class Argument
{
///
/// Gets or sets name of the DLNA argument.
///
public string Name { get; set; } = string.Empty;
///
/// Gets or sets the direction of the parameter.
///
public string Direction { get; set; } = string.Empty;
///
/// Gets or sets the related DLNA state variable for this argument.
///
public string RelatedStateVariable { get; set; } = string.Empty;
}
}