mirror of
https://github.com/91270/MeiamSubtitles.git
synced 2026-03-20 11:57:05 +08:00
15 lines
330 B
C#
15 lines
330 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Emby.MeiamSub.Thunder.Model
|
|
{
|
|
public class DownloadSubInfo
|
|
{
|
|
public string Url { get; set; }
|
|
public string Format { get; set; }
|
|
public string Language { get; set; }
|
|
public bool? IsForced { get; set; }
|
|
}
|
|
}
|