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

10 lines
294 B
C#

namespace MusicCast.Net.Api.Server.Models;
public class GetFuncStatusResponse
{
public int response_code { get; set; }
public bool auto_power_standby { get; set; }
public bool speaker_a { get; set; }
public bool speaker_b { get; set; }
public bool headphone { get; set; }
}