You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
629 B
20 lines
629 B
using System;
|
|
|
|
namespace MediaBrowser.Model.Providers
|
|
{
|
|
public class RemoteSubtitleInfo
|
|
{
|
|
public string ThreeLetterISOLanguageName { get; set; }
|
|
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; }
|
|
}
|
|
}
|