aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/XmlAttribute.cs
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2024-01-12 11:24:32 -0500
committerGitHub <noreply@github.com>2024-01-12 09:24:32 -0700
commit68fd9c469f013acef3e661d15adb61c4eb965ec7 (patch)
tree9744f466fb5125e5acbc51e68431d2a4c2d189bb /MediaBrowser.Model/Dlna/XmlAttribute.cs
parentad2f38ba0bcf26495a76a4cc80f8f9f65c0886ed (diff)
Remove DLNA-specific DeviceProfile code (#10850)
* Remove DLNA-specific methods from DeviceProfile * Remove DLNA-specific fields from DeviceProfile * Remove unused DLNA models
Diffstat (limited to 'MediaBrowser.Model/Dlna/XmlAttribute.cs')
-rw-r--r--MediaBrowser.Model/Dlna/XmlAttribute.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/MediaBrowser.Model/Dlna/XmlAttribute.cs b/MediaBrowser.Model/Dlna/XmlAttribute.cs
deleted file mode 100644
index 03bb2e4b11..0000000000
--- a/MediaBrowser.Model/Dlna/XmlAttribute.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-#nullable disable
-#pragma warning disable CS1591
-
-using System.Xml.Serialization;
-
-namespace MediaBrowser.Model.Dlna
-{
- /// <summary>
- /// Defines the <see cref="XmlAttribute" />.
- /// </summary>
- public class XmlAttribute
- {
- /// <summary>
- /// Gets or sets the name of the attribute.
- /// </summary>
- [XmlAttribute("name")]
- public string Name { get; set; }
-
- /// <summary>
- /// Gets or sets the value of the attribute.
- /// </summary>
- [XmlAttribute("value")]
- public string Value { get; set; }
- }
-}