feat: Added KuWo(酷我) Music lyrics source (incomplete).

This commit is contained in:
real-zony
2022-10-26 17:05:44 +08:00
parent 6b72f919b8
commit b7b1f36bf5
15 changed files with 219 additions and 13 deletions

View File

@@ -0,0 +1,21 @@
using Newtonsoft.Json;
namespace ZonyLrcTools.Common.Lyrics.Providers.KuWo.JsonModel;
public class GetLyricsResponse
{
[JsonProperty("status")] public int Status { get; set; }
[JsonProperty("lrclist")] public ICollection<GetLyricsItem> Lyrics { get; set; }
[JsonProperty("msg")] public string? ErrorMessage { get; set; }
[JsonProperty("msgs")] public string? ErrorMessage2 { get; set; }
}
public class GetLyricsItem
{
[JsonProperty("lineLyric")] public string Text { get; set; }
[JsonProperty("time")] public string Position { get; set; }
}