Ver Fonte

Add support for more remote subtitle info

MBR#0001 há 1 ano atrás
pai
commit
82d79d2dff
1 ficheiros alterados com 10 adições e 0 exclusões
  1. 10 0
      MediaBrowser.Model/Providers/RemoteSubtitleInfo.cs

+ 10 - 0
MediaBrowser.Model/Providers/RemoteSubtitleInfo.cs

@@ -25,8 +25,18 @@ namespace MediaBrowser.Model.Providers
 
         public float? CommunityRating { get; set; }
 
+        public float? FrameRate { get; set; }
+
         public int? DownloadCount { get; set; }
 
         public bool? IsHashMatch { get; set; }
+
+        public bool? AiTranslated { get; set; }
+
+        public bool? MachineTranslated { get; set; }
+
+        public bool? Forced { get; set; }
+
+        public bool? HearingImpaired { get; set; }
     }
 }