Files
webzine/Webzine.Business/DTOs/Spotify/SpotifyImageDto.cs
2026-04-02 17:59:36 +02:00

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; }
}