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,13 @@
using Newtonsoft.Json;
namespace ZonyLrcTools.Common.Lyrics.Providers.KuWo.JsonModel;
public class GetLyricsRequest
{
[JsonProperty("musicId")] public long MusicId { get; }
public GetLyricsRequest(long musicId)
{
MusicId = musicId;
}
}