ServiceAction.cs 456 B

123456789101112131415161718192021222324
  1. #pragma warning disable CS1591
  2. using System.Collections.Generic;
  3. namespace Emby.Dlna.Common
  4. {
  5. public class ServiceAction
  6. {
  7. public ServiceAction()
  8. {
  9. ArgumentList = new List<Argument>();
  10. }
  11. public string Name { get; set; }
  12. public List<Argument> ArgumentList { get; set; }
  13. /// <inheritdoc />
  14. public override string ToString()
  15. {
  16. return Name;
  17. }
  18. }
  19. }