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