jellyfin/Emby.Dlna/ProfileSerialization/ProfileCondition.cs

39 lines
1 KiB
C#
Raw Normal View History

2016-10-30 00:22:20 +02:00
using System.Xml.Serialization;
using MediaBrowser.Model.Dlna;
2016-10-30 00:34:54 +02:00
namespace Emby.Dlna.ProfileSerialization
2016-10-30 00:22:20 +02:00
{
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()
{
IsRequired = true;
}
public ProfileCondition(ProfileConditionType condition, ProfileConditionValue property, string value)
: this(condition, property, value, false)
{
}
public ProfileCondition(ProfileConditionType condition, ProfileConditionValue property, string value, bool isRequired)
{
Condition = condition;
Property = property;
Value = value;
IsRequired = isRequired;
}
}
}