mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-09-05 21:16:52 +00:00
13 lines
265 B
C#
13 lines
265 B
C#
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;
|
|
}
|
|
} |