Add server api definition

This commit is contained in:
2025-05-24 19:54:06 +02:00
commit a80465c6c1
37 changed files with 3842 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
namespace MusicCast.Net.Api.Server.Models;
public class GetSignalInfoResponse
{
public int response_code { get; set; }
public Audio audio { get; set; }
public class Audio
{
public int error { get; set; }
public string format { get; set; }
public string fs { get; set; }
}
}