mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-24 15:06:26 +00:00
9dbd210a2f
* Fixed issues #926, and #928. Added JsonConverter attributes to properties. * Fixed complier warning CA1305
15 lines
302 B
C#
15 lines
302 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace SpotifyAPI.Web
|
|
{
|
|
public class Image
|
|
{
|
|
[JsonConverter(typeof(DoubleToIntConverter))]
|
|
public int Height { get; set; }
|
|
[JsonConverter(typeof(DoubleToIntConverter))]
|
|
public int Width { get; set; }
|
|
public string Url { get; set; } = default!;
|
|
}
|
|
}
|
|
|