Files
MusicCast.Net/MusicCast.Net.Api.Server/Models/GetStreamingServiceSettingsResponse.cs
2025-05-24 19:54:08 +02:00

14 lines
355 B
C#

namespace MusicCast.Net.Api.Server.Models;
public class GetStreamingServiceSettingsResponse
{
public int response_code { get; set; }
public Services[] services { get; set; }
public class Services
{
public string input { get; set; }
public bool confirmed { get; set; }
public bool use_service { get; set; }
}
}