2
0

RemoteSubtitleInfo.cs 626 B

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