aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/ProfileCondition.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-12-09 02:23:09 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-12-09 02:23:09 -0500
commitc7d520555b8fe6eacc0ed7ac384b6f16358a38ae (patch)
tree907e443bd8cbd93235eb8fabd29e306eaf47f791 /MediaBrowser.Model/Dlna/ProfileCondition.cs
parent56fb08eeed47102c0b0f8cf656036586e3e99bf2 (diff)
update dlna profiles
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()