aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/VideoType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Entities/VideoType.cs')
-rw-r--r--MediaBrowser.Model/Entities/VideoType.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/VideoType.cs b/MediaBrowser.Model/Entities/VideoType.cs
new file mode 100644
index 000000000..05c2fa32c
--- /dev/null
+++ b/MediaBrowser.Model/Entities/VideoType.cs
@@ -0,0 +1,26 @@
+
+namespace MediaBrowser.Model.Entities
+{
+ /// <summary>
+ /// Enum VideoType
+ /// </summary>
+ public enum VideoType
+ {
+ /// <summary>
+ /// The video file
+ /// </summary>
+ VideoFile,
+ /// <summary>
+ /// The iso
+ /// </summary>
+ Iso,
+ /// <summary>
+ /// The DVD
+ /// </summary>
+ Dvd,
+ /// <summary>
+ /// The blu ray
+ /// </summary>
+ BluRay
+ }
+}