Files
jellyfin-jellyfin-1/MediaBrowser.Model/Providers/RemoteSubtitleInfo.cs

20 lines
629 B
C#
Raw Normal View History

2014-05-06 22:28:19 -04:00
using System;
namespace MediaBrowser.Model.Providers
{
public class RemoteSubtitleInfo
{
2014-05-11 19:02:28 -04:00
public string ThreeLetterISOLanguageName { get; set; }
2014-05-06 22:28:19 -04:00
public string Id { get; set; }
public string ProviderName { get; set; }
public string Name { get; set; }
public string Format { get; set; }
public string Author { get; set; }
public string Comment { get; set; }
public DateTime? DateCreated { get; set; }
public float? CommunityRating { get; set; }
public int? DownloadCount { get; set; }
public bool? IsHashMatch { get; set; }
}
}