RemoteSubtitleInfo.cs 658 B

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