2
0

ServiceAction.cs 400 B

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