9 lines
180 B
C#
9 lines
180 B
C#
namespace Webzine.Business.DTOs.Spotify;
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
public class SpotifyImageDto
|
|
{
|
|
[JsonPropertyName("url")]
|
|
public string? Url { get; set; }
|
|
} |