using Newtonsoft.Json; namespace ZonyLrcTools.Cli.Infrastructure.Lyric.NetEase.JsonModel { public class GetLyricResponse { /// /// 原始的歌词。 /// [JsonProperty("lrc")] public InnerLyric OriginalLyric { get; set; } /// /// 卡拉 OK 歌词。 /// [JsonProperty("klyric")] public InnerLyric KaraokeLyric { get; set; } /// /// 如果存在翻译歌词,则本项内容为翻译歌词。 /// [JsonProperty("tlyric")] public InnerLyric TranslationLyric { get; set; } /// /// 如果存在罗马音歌词,则本项内容为罗马音歌词。 /// [JsonProperty("romalrc")] public InnerLyric RomaLyric { get; set; } /// /// 状态码。 /// [JsonProperty("code")] public string StatusCode { get; set; } } /// /// 歌词 JSON 类型 /// public class InnerLyric { [JsonProperty("version")] public string Version { get; set; } /// /// 具体的歌词数据。 /// [JsonProperty("lyric")] public string Text { get; set; } } }