aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/Common/Argument.cs
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2023-11-09 14:45:16 -0500
committerPatrick Barron <barronpm@gmail.com>2023-11-15 20:53:44 -0500
commitf1aba6b95230474d47c580071370c7dbd00eba13 (patch)
tree4fdc0131e7ae17c724e5bcda8d1e8878475a6461 /Emby.Dlna/Common/Argument.cs
parent01fd42cf9555d85469c07ce3d0c0e5842359eb2b (diff)
Remove Emby.Dlna
Diffstat (limited to 'Emby.Dlna/Common/Argument.cs')
-rw-r--r--Emby.Dlna/Common/Argument.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/Emby.Dlna/Common/Argument.cs b/Emby.Dlna/Common/Argument.cs
deleted file mode 100644
index e4e9c55e0d..0000000000
--- a/Emby.Dlna/Common/Argument.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-namespace Emby.Dlna.Common
-{
- /// <summary>
- /// DLNA Query parameter type, used when querying DLNA devices via SOAP.
- /// </summary>
- public class Argument
- {
- /// <summary>
- /// Gets or sets name of the DLNA argument.
- /// </summary>
- public string Name { get; set; } = string.Empty;
-
- /// <summary>
- /// Gets or sets the direction of the parameter.
- /// </summary>
- public string Direction { get; set; } = string.Empty;
-
- /// <summary>
- /// Gets or sets the related DLNA state variable for this argument.
- /// </summary>
- public string RelatedStateVariable { get; set; } = string.Empty;
- }
-}