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

9 lines
125 B
C#
Raw Normal View History

2020-05-02 21:48:21 +01:00
namespace SpotifyAPI.Web
{
public class SnapshotResponse
{
2020-05-25 17:00:38 +01:00
public string SnapshotId { get; set; } = default!;
2020-05-02 21:48:21 +01:00
}
}
2020-05-25 17:00:38 +01:00