RemoteSubtitleInfo.cs 931 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using System;
  4. namespace MediaBrowser.Model.Providers
  5. {
  6. public class RemoteSubtitleInfo
  7. {
  8. public string ThreeLetterISOLanguageName { get; set; }
  9. public string Id { get; set; }
  10. public string ProviderName { get; set; }
  11. public string Name { get; set; }
  12. public string Format { get; set; }
  13. public string Author { get; set; }
  14. public string Comment { get; set; }
  15. public DateTime? DateCreated { get; set; }
  16. public float? CommunityRating { get; set; }
  17. public float? FrameRate { get; set; }
  18. public int? DownloadCount { get; set; }
  19. public bool? IsHashMatch { get; set; }
  20. public bool? AiTranslated { get; set; }
  21. public bool? MachineTranslated { get; set; }
  22. public bool? Forced { get; set; }
  23. public bool? HearingImpaired { get; set; }
  24. }
  25. }