Lisoveliy aebe654c38
Some checks are pending
Deploy / update (push) Waiting to run
Build Project .NET / build (push) Waiting to run
chore: init commit from GitHub
2025-05-12 19:44:33 +03:00

30 lines
880 B
C#

using System.Text.Json.Serialization;
namespace SWAD.API.Models.JsonStructures.MusicAPI.Spotify;
/// <summary>
/// Json Structure for tidal track response
/// </summary>
public class SpotifyTrackResponse
{
// ReSharper disable NullableWarningSuppressionIsUsed
[JsonPropertyName("name")] public string Name { get; set; } = null!;
[JsonPropertyName("artists")] public Artist[] Artists { get; set; } = null!;
[JsonPropertyName("album")] public Album Albums { get; set; } = null!;
public class Artist
{
[JsonPropertyName("id")] public string Id { get; set; } = null!;
[JsonPropertyName("name")] public string Name { get; set; } = null!;
}
public class Album
{
[JsonPropertyName("id")] public string Id { get; set; } = null!;
[JsonPropertyName("name")] public string Name { get; set; } = null!;
}
}