aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/ProfileCondition.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Dlna/ProfileCondition.cs')
-rw-r--r--MediaBrowser.Model/Dlna/ProfileCondition.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Dlna/ProfileCondition.cs b/MediaBrowser.Model/Dlna/ProfileCondition.cs
index 587c628ff..3d104f9c4 100644
--- a/MediaBrowser.Model/Dlna/ProfileCondition.cs
+++ b/MediaBrowser.Model/Dlna/ProfileCondition.cs
@@ -1,15 +1,20 @@
using System.Xml.Serialization;
+using MediaBrowser.Model.Dlna;
namespace MediaBrowser.Model.Dlna
{
public class ProfileCondition
{
+ [XmlAttribute("condition")]
public ProfileConditionType Condition { get; set; }
+ [XmlAttribute("property")]
public ProfileConditionValue Property { get; set; }
+ [XmlAttribute("value")]
public string Value { get; set; }
+ [XmlAttribute("isRequired")]
public bool IsRequired { get; set; }
public ProfileCondition()