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