nixos-configs/devices/homie/modules/home-assistant/netdaemon/apps/Spotify/PlayAlbum/SpotifyplusSearchAlbumsResponse.cs
matt1432 98c27b1051
All checks were successful
Discord / discord commits (push) Has been skipped
feat(hass): add PlayAlbum voice command
2024-10-08 02:07:05 -04:00

39 lines
1.2 KiB
C#

namespace Spotify;
using System.Collections.Generic;
public record AlbumItem
{
public string? AlbumType { get; set; }
public List<Artist>? Artists { get; set; }
public List<string?>? AvailableMarkets { get; set; }
public ExternalUrls? ExternalUrls { get; set; }
public string? Href { get; set; }
public string? Id { get; set; }
public string? ImageUrl { get; set; }
public List<Image>? Images { get; set; }
public string? Name { get; set; }
public string? ReleaseDate { get; set; }
public string? ReleaseDatePrecision { get; set; }
public Restrictions? Restrictions { get; set; }
public int TotalTracks { get; set; }
public string? Type { get; set; }
public string? Uri { get; set; }
}
public record AlbumResult
{
public string? Href { get; set; }
public int Limit { get; set; }
public string? Next { get; set; }
public int Offset { get; set; }
public object? Previous { get; set; }
public int Total { get; set; }
public List<AlbumItem>? Items { get; set; }
}
public class SpotifyplusSearchAlbumsResponse
{
public UserProfile? UserProfile { get; set; }
public AlbumResult? Result { get; set; }
}