22 lines
664 B
C#
22 lines
664 B
C#
namespace MusicCast.Net.Api.Server.Models;
|
|
|
|
public class GetListInfoResponse
|
|
{
|
|
public int response_code { get; set; }
|
|
public string input { get; set; }
|
|
public int menu_layer { get; set; }
|
|
public int max_line { get; set; }
|
|
public int index { get; set; }
|
|
public int playing_index { get; set; }
|
|
public string menu_name { get; set; }
|
|
public List_info[] list_info { get; set; }
|
|
|
|
public class List_info
|
|
{
|
|
public string text { get; set; }
|
|
public object[] subtexts { get; set; }
|
|
public string thumbnail { get; set; }
|
|
public string logo { get; set; }
|
|
public int attribute { get; set; }
|
|
}
|
|
} |