1
0
mirror of https://github.com/Sarsoo/Spotify.NET.git synced 2025-01-21 10:32:41 +00:00
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!;
}
}