浏览代码

Added values to EmbeddedSubtitleOptions enum

Matthew Jones 3 年之前
父节点
当前提交
b7cab46b4a
共有 1 个文件被更改,包括 4 次插入4 次删除
  1. 4 4
      MediaBrowser.Model/Configuration/EmbeddedSubtitleOptions.cs

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

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