namespace HaloPixelToolBox.Core.Models.Lyrics;
/// <summary>
/// 一行带时间戳的同步歌词。
/// </summary>
public sealed class LyricLine
{
public TimeSpan Timestamp { get; set; }
public string Text { get; set; } = string.Empty;
}
namespace HaloPixelToolBox.Core.Models.Lyrics;
/// <summary>
/// 一行带时间戳的同步歌词。
/// </summary>
public sealed class LyricLine
{
public TimeSpan Timestamp { get; set; }
public string Text { get; set; } = string.Empty;
}