feat: add DTOs for basic endpoints

This commit is contained in:
2026-01-28 05:17:11 +01:00
parent 03940a99ba
commit 6736ce8c13
6 changed files with 169 additions and 0 deletions

9
DTOs/ResponseWrapper.cs Normal file
View File

@@ -0,0 +1,9 @@
using System.Text.Json.Serialization;
namespace Shadow.DTOs;
public class ResponseWrapper
{
[JsonPropertyName("subsonic-response")]
required public SubsonicResponseDTO SubsonicResponse { get; set; }
}