aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/Common/StateVariable.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Dlna/Common/StateVariable.cs')
-rw-r--r--Emby.Dlna/Common/StateVariable.cs34
1 files changed, 0 insertions, 34 deletions
diff --git a/Emby.Dlna/Common/StateVariable.cs b/Emby.Dlna/Common/StateVariable.cs
deleted file mode 100644
index fd733e085..000000000
--- a/Emby.Dlna/Common/StateVariable.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace Emby.Dlna.Common
-{
- /// <summary>
- /// Defines the <see cref="StateVariable" />.
- /// </summary>
- public class StateVariable
- {
- /// <summary>
- /// Gets or sets the name of the state variable.
- /// </summary>
- public string Name { get; set; } = string.Empty;
-
- /// <summary>
- /// Gets or sets the data type of the state variable.
- /// </summary>
- public string DataType { get; set; } = string.Empty;
-
- /// <summary>
- /// Gets or sets a value indicating whether it sends events.
- /// </summary>
- public bool SendsEvents { get; set; }
-
- /// <summary>
- /// Gets or sets the allowed values range.
- /// </summary>
- public IReadOnlyList<string> AllowedValues { get; set; } = Array.Empty<string>();
-
- /// <inheritdoc />
- public override string ToString() => Name;
- }
-}