Spotify.NET/SpotifyAPI.Web/Models/Response/Copyright.cs
2020-05-25 18:00:47 +02:00

10 lines
161 B
C#

namespace SpotifyAPI.Web
{
public class Copyright
{
public string Text { get; set; } = default!;
public string Type { get; set; } = default!;
}
}