Files
MeiamSubtitles/Emby.MeiamSub.Thunder/Model/DownloadSubInfo.cs
2022-05-28 10:02:49 +08:00

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; }
}
}