From 24246ba85fef0e7667b9ab624874a91c28df8419 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 22 Mar 2014 14:25:03 -0400 Subject: support conditions with direct play profiles --- MediaBrowser.Controller/Dlna/DirectPlayProfile.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'MediaBrowser.Controller') diff --git a/MediaBrowser.Controller/Dlna/DirectPlayProfile.cs b/MediaBrowser.Controller/Dlna/DirectPlayProfile.cs index 68e25e2f7b..4b9a43867f 100644 --- a/MediaBrowser.Controller/Dlna/DirectPlayProfile.cs +++ b/MediaBrowser.Controller/Dlna/DirectPlayProfile.cs @@ -68,13 +68,15 @@ namespace MediaBrowser.Controller.Dlna public class ProfileCondition { public ProfileConditionType Condition { get; set; } - public ProfileConditionValue Value { get; set; } + public ProfileConditionValue Property { get; set; } + public string Value { get; set; } } public enum DlnaProfileType { Audio = 0, - Video = 1 + Video = 1, + Photo = 2 } public enum ProfileConditionType -- cgit v1.2.3