diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-22 14:25:03 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-22 14:25:03 -0400 |
| commit | 24246ba85fef0e7667b9ab624874a91c28df8419 (patch) | |
| tree | bb38cf2e7d01e5a7545b6ec302832bb704e75397 /MediaBrowser.Controller | |
| parent | 662929fe8b544346de688dfe4c9626db128c7b6b (diff) | |
support conditions with direct play profiles
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 |
