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

9 lines
195 B
C#

namespace Webzine.Business.DTOs.Spotify;
using System.Text.Json.Serialization;
public class SpotifyExternalUrlsDto
{
[JsonPropertyName("spotify")]
public string? Spotify { get; set; }
}