Files
MeiamSubtitles/Jellyfin.MeiamSub.Thunder/Model/DownloadSubInfo.cs
2022-04-10 14:21:09 +08:00

15 lines
351 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Jellyfin.MeiamSub.Thunder.Model
{
public class DownloadSubInfo
{
public string Url { get; set; }
public string Format { get; set; }
public string Language { get; set; }
public string TwoLetterISOLanguageName { get; set; }
}
}