11 lines
342 B
C#
11 lines
342 B
C#
namespace MusicCast.Net.Api.Server.Models;
|
|
|
|
public class GetDistributionInfoResponse
|
|
{
|
|
public int response_code { get; set; }
|
|
public string group_id { get; set; }
|
|
public string group_name { get; set; }
|
|
public string role { get; set; }
|
|
public string server_zone { get; set; }
|
|
public object[] client_list { get; set; }
|
|
} |