mirror of
https://github.com/real-zony/ZonyLrcToolsX.git
synced 2025-09-05 13:07:26 +00:00
20 lines
590 B
C#
20 lines
590 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace ZonyLrcTools.Common.Lyrics.Providers.KuGou.JsonModel
|
|
{
|
|
public class GetLyricAccessKeyResponse
|
|
{
|
|
[JsonProperty("status")] public int Status { get; set; }
|
|
|
|
[JsonProperty("errcode")] public int ErrorCode { get; set; }
|
|
|
|
[JsonProperty("candidates")] public List<GetLyricAccessKeyDataObject>? AccessKeyDataObjects { get; set; }
|
|
}
|
|
|
|
public class GetLyricAccessKeyDataObject
|
|
{
|
|
[JsonProperty("accesskey")] public string? AccessKey { get; set; }
|
|
|
|
[JsonProperty("id")] public string? Id { get; set; }
|
|
}
|
|
} |