aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/Common/ServiceAction.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Dlna/Common/ServiceAction.cs')
-rw-r--r--Emby.Dlna/Common/ServiceAction.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/Emby.Dlna/Common/ServiceAction.cs b/Emby.Dlna/Common/ServiceAction.cs
new file mode 100644
index 0000000000..7685e217e8
--- /dev/null
+++ b/Emby.Dlna/Common/ServiceAction.cs
@@ -0,0 +1,21 @@
+using System.Collections.Generic;
+
+namespace MediaBrowser.Dlna.Common
+{
+ public class ServiceAction
+ {
+ public string Name { get; set; }
+
+ public List<Argument> ArgumentList { get; set; }
+
+ public override string ToString()
+ {
+ return Name;
+ }
+
+ public ServiceAction()
+ {
+ ArgumentList = new List<Argument>();
+ }
+ }
+}