mirror of
https://github.com/91270/MeiamSubtitles.git
synced 2026-02-03 02:24:16 +08:00
15 lines
351 B
C#
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; }
|
|
}
|
|
}
|