mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 07:26:28 +00:00
16 lines
328 B
C#
16 lines
328 B
C#
namespace SpotifyAPI.Web.Auth
|
|
{
|
|
public class AuthorizationCodeResponse
|
|
{
|
|
public AuthorizationCodeResponse(string code)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(code, nameof(code));
|
|
|
|
Code = code;
|
|
}
|
|
|
|
public string Code { get; set; } = default!;
|
|
public string State { get; set; } = default!;
|
|
}
|
|
}
|