mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-09-06 05:36:53 +00:00
23 lines
658 B
C#
23 lines
658 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace ZonyLrcTools.Cli.Infrastructure.Lyric.KuGou.JsonModel
|
|
{
|
|
public class GetLyricAccessKeyRequest
|
|
{
|
|
[JsonProperty("ver")] public int UnknownParameters1 { get; }
|
|
|
|
[JsonProperty("man")] public string UnknownParameters2 { get; }
|
|
|
|
[JsonProperty("client")] public string UnknownParameters3 { get; }
|
|
|
|
[JsonProperty("hash")] public string FileHash { get; }
|
|
|
|
public GetLyricAccessKeyRequest(string fileHash)
|
|
{
|
|
UnknownParameters1 = 1;
|
|
UnknownParameters2 = "yes";
|
|
UnknownParameters3 = "mobi";
|
|
FileHash = fileHash;
|
|
}
|
|
}
|
|
} |