9 lines
195 B
C#
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; }
|
|
} |