Argument.cs 696 B

1234567891011121314151617181920212223
  1. namespace Emby.Dlna.Common
  2. {
  3. /// <summary>
  4. /// DLNA Query parameter type, used when quering DLNA devices via SOAP.
  5. /// </summary>
  6. public class Argument
  7. {
  8. /// <summary>
  9. /// Gets or sets name of the DLNA argument.
  10. /// </summary>
  11. public string Name { get; set; } = string.Empty;
  12. /// <summary>
  13. /// Gets or sets the direction of the parameter.
  14. /// </summary>
  15. public string Direction { get; set; } = string.Empty;
  16. /// <summary>
  17. /// Gets or sets the related DLNA state variable for this argument.
  18. /// </summary>
  19. public string RelatedStateVariable { get; set; } = string.Empty;
  20. }
  21. }