jellyfin/MediaBrowser.Model/Providers/RemoteSubtitleInfo.cs

43 lines
931 B
C#
Raw Normal View History

#nullable disable
2020-02-03 19:49:27 -05:00
#pragma warning disable CS1591
using System;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Providers
{
public class RemoteSubtitleInfo
{
public string ThreeLetterISOLanguageName { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public string Id { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public string ProviderName { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public string Name { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public string Format { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public string Author { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public string Comment { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public DateTime? DateCreated { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public float? CommunityRating { get; set; }
2020-06-15 17:43:52 -04:00
public float? FrameRate { get; set; }
2018-12-27 18:27:57 -05:00
public int? DownloadCount { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public bool? IsHashMatch { get; set; }
public bool? AiTranslated { get; set; }
public bool? MachineTranslated { get; set; }
public bool? Forced { get; set; }
public bool? HearingImpaired { get; set; }
2018-12-27 18:27:57 -05:00
}
}