aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/Video3DFormat.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-25 14:10:39 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-25 14:10:39 -0400
commit07e230c2eb9524c7c5e8a7fe0a021df3801d40b0 (patch)
tree21983cceaac2182392a00a2c44e4bd18c76d1fcb /MediaBrowser.Model/Entities/Video3DFormat.cs
parent640de9ef790847658c3cf595b5253eaec9ccad86 (diff)
Added Video3DFormat property
Diffstat (limited to 'MediaBrowser.Model/Entities/Video3DFormat.cs')
-rw-r--r--MediaBrowser.Model/Entities/Video3DFormat.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/Video3DFormat.cs b/MediaBrowser.Model/Entities/Video3DFormat.cs
new file mode 100644
index 000000000..04475cf95
--- /dev/null
+++ b/MediaBrowser.Model/Entities/Video3DFormat.cs
@@ -0,0 +1,14 @@
+
+namespace MediaBrowser.Model.Entities
+{
+ public enum Video3DFormat
+ {
+ HalfSideBySide,
+
+ FullSideBySide,
+
+ FullTopAndBottom,
+
+ HalfTopAndBottom
+ }
+}