repo creation with initial code after cloning public repo
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
#nullable disable
|
||||
#pragma warning disable CS1591
|
||||
|
||||
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 float? FrameRate { get; set; }
|
||||
|
||||
public int? DownloadCount { get; set; }
|
||||
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user