Files
MeiamSubtitles/Emby.MeiamSub.Shooter/Model/SubtitleResponseRoot.cs
2021-07-01 15:56:44 +08:00

20 lines
419 B
C#

using System.Collections.Generic;
using System.Runtime.Serialization;
namespace Emby.MeiamSub.Shooter.Model
{
public class SubtitleResponseRoot
{
public string Desc { get; set; }
public int Delay { get; set; }
public SubFileInfo[] Files { get; set; }
}
public class SubFileInfo
{
public string Ext { get; set; }
public string Link { get; set; }
}
}