From 07e230c2eb9524c7c5e8a7fe0a021df3801d40b0 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Tue, 25 Jun 2013 14:10:39 -0400 Subject: Added Video3DFormat property --- MediaBrowser.Controller/Entities/Video.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'MediaBrowser.Controller/Entities') diff --git a/MediaBrowser.Controller/Entities/Video.cs b/MediaBrowser.Controller/Entities/Video.cs index 9df29cdfca..1fef52fa2b 100644 --- a/MediaBrowser.Controller/Entities/Video.cs +++ b/MediaBrowser.Controller/Entities/Video.cs @@ -39,6 +39,12 @@ namespace MediaBrowser.Controller.Entities /// The type of the iso. public IsoType? IsoType { get; set; } + /// + /// Gets or sets the video3 D format. + /// + /// The video3 D format. + public Video3DFormat? Video3DFormat { get; set; } + /// /// Gets or sets the format of the video. /// @@ -101,7 +107,7 @@ namespace MediaBrowser.Controller.Entities [IgnoreDataMember] public bool Is3D { - get { return VideoFormat > 0; } + get { return Video3DFormat.HasValue; } } /// -- cgit v1.2.3