소스 검색

Add support for more remote subtitle info

MBR#0001 1 년 전
부모
커밋
82d79d2dff
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  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; }
     }
 }