mirror of
https://github.com/yaobiao131/downkyicore.git
synced 2025-08-10 00:52:31 +00:00
11 lines
354 B
C#
11 lines
354 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace DownKyi.Core.BiliApi.Models.Json;
|
|
|
|
public class Subtitle : BaseModel
|
|
{
|
|
[JsonProperty("from")] public float From { get; set; }
|
|
[JsonProperty("to")] public float To { get; set; }
|
|
[JsonProperty("location")] public int Location { get; set; }
|
|
[JsonProperty("content")] public string Content { get; set; }
|
|
} |