1
0
mirror of https://github.com/Sarsoo/Spotify.NET.git synced 2025-01-23 03:22:42 +00:00
Spotify.NET/SpotifyAPI.Web/Models/Response/Image.cs
2020-05-25 18:00:47 +02:00

11 lines
178 B
C#

namespace SpotifyAPI.Web
{
public class Image
{
public int Height { get; set; }
public int Width { get; set; }
public string Url { get; set; } = default!;
}
}