Browse Source

Added values to EmbeddedSubtitleOptions enum

Matthew Jones 3 years ago
parent
commit
b7cab46b4a
1 changed files with 4 additions and 4 deletions
  1. 4 4
      MediaBrowser.Model/Configuration/EmbeddedSubtitleOptions.cs

+ 4 - 4
MediaBrowser.Model/Configuration/EmbeddedSubtitleOptions.cs

@@ -9,22 +9,22 @@ namespace MediaBrowser.Model.Configuration
         /// <summary>
         /// <summary>
         /// Allow all embedded subs.
         /// Allow all embedded subs.
         /// </summary>
         /// </summary>
-        AllowAll,
+        AllowAll = 0,
 
 
         /// <summary>
         /// <summary>
         /// Allow only embedded subs that are text based.
         /// Allow only embedded subs that are text based.
         /// </summary>
         /// </summary>
-        AllowText,
+        AllowText = 1,
 
 
         /// <summary>
         /// <summary>
         /// Allow only embedded subs that are image based.
         /// Allow only embedded subs that are image based.
         /// </summary>
         /// </summary>
-        AllowImage,
+        AllowImage = 2,
 
 
         /// <summary>
         /// <summary>
         /// Disable all embedded subs.
         /// Disable all embedded subs.
         /// </summary>
         /// </summary>
-        AllowNone,
+        AllowNone = 3,
     }
     }
 
 
 }
 }