mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 09:44:47 +03:00
Add GPL modules
This commit is contained in:
19
MediaBrowser.Model/Providers/RemoteSubtitleInfo.cs
Normal file
19
MediaBrowser.Model/Providers/RemoteSubtitleInfo.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user