mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-07-05 06:50:41 +00:00
17 lines
405 B
C#
17 lines
405 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace ZonyLrcTools.Cli.Infrastructure.Lyric.NetEase.JsonModel
|
|
{
|
|
public class GetSongDetailsRequest
|
|
{
|
|
public GetSongDetailsRequest(int songId)
|
|
{
|
|
SongId = songId;
|
|
SongIds = $"%5B{songId}%5D";
|
|
}
|
|
|
|
[JsonProperty("id")] public int SongId { get; }
|
|
|
|
[JsonProperty("ids")] public string SongIds { get; }
|
|
}
|
|
} |