jellyfin/MediaBrowser.Model/Providers/RemoteSubtitleInfo.cs

43 lines
931 B
C#
Raw Normal View History

#nullable disable
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; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public string Id { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public string ProviderName { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public string Name { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public string Format { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public string Author { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public string Comment { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public DateTime? DateCreated { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01:00
public float? CommunityRating { get; set; }
2020-06-15 23:43:52 +02:00
public float? FrameRate { get; set; }
2018-12-28 00:27:57 +01:00
public int? DownloadCount { get; set; }
2020-06-15 23:43:52 +02:00
2018-12-28 00:27:57 +01: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-28 00:27:57 +01:00
}
}