You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
downkyi/DownKyi.Core/BiliApi/VideoStream/Models/SubtitleInfo.cs

19 lines
526 B

using DownKyi.Core.BiliApi.Models;
using Newtonsoft.Json;
using System.Collections.Generic;
namespace DownKyi.Core.BiliApi.VideoStream.Models
{
public class SubtitleInfo : BaseModel
{
[JsonProperty("allow_submit")]
public bool AllowSubmit { get; set; }
[JsonProperty("lan")]
public string Lan { get; set; }
[JsonProperty("lan_doc")]
public string LanDoc { get; set; }
[JsonProperty("subtitles")]
public List<Subtitle> Subtitles { get; set; }
}
}