using System.Collections.Generic; namespace NetDaemonConfig.Apps.Spotify.PlayArtist { public record ArtistItem { public ExternalUrls? ExternalUrls { get; init; } public Followers? Followers { get; init; } public List? Genres { get; init; } public string? Href { get; init; } public string? Id { get; init; } public string? ImageUrl { get; init; } public List? Images { get; init; } public string? Name { get; init; } public int? Popularity { get; init; } public string? Type { get; init; } public string? Uri { get; init; } } public record ArtistResult { public string? Href { get; init; } public int? Limit { get; init; } public string? Next { get; init; } public int? Offset { get; set; } public object? Previous { get; init; } public int? Total { get; init; } public List? Items { get; init; } } public record SpotifyplusSearchArtistsResponse { public UserProfile? UserProfile { get; init; } public ArtistResult? Result { get; init; } } }