Spotify.NET/SpotifyAPI.Web/Models/Response/Cursor.cs

10 lines
161 B
C#
Raw Normal View History

2020-05-04 22:02:53 +01:00
namespace SpotifyAPI.Web
{
public class Cursor
{
2020-05-25 17:00:38 +01:00
public string Before { get; set; } = default!;
public string After { get; set; } = default!;
2020-05-04 22:02:53 +01:00
}
}
2020-05-25 17:00:38 +01:00