diff options
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Dlna/DirectPlayProfile.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Dlna/DirectPlayProfile.cs b/MediaBrowser.Controller/Dlna/DirectPlayProfile.cs index 68e25e2f7..4b9a43867 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 |
