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