jellyfin/MediaBrowser.Model/Providers/RemoteSubtitleInfo.cs

22 lines
658 B
C#
Raw Normal View History

2020-02-04 01:49:27 +01:00
#pragma warning disable CS1591
using System;
2018-12-28 00:27:57 +01:00
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; }
}
}