mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 19:24:55 +08:00
15 lines
327 B
C#
15 lines
327 B
C#
// 2025/6/23 by Zhe Fang
|
|
|
|
using BetterLyrics.WinUI3.Helper;
|
|
|
|
namespace BetterLyrics.WinUI3.Models
|
|
{
|
|
public class LyricsChar
|
|
{
|
|
public int? EndMs { get; set; }
|
|
public int StartIndex { get; set; }
|
|
public int StartMs { get; set; }
|
|
public string Text { get; set; } = string.Empty;
|
|
}
|
|
}
|