mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 22:56:25 +00:00
16 lines
329 B
C#
16 lines
329 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!;
|
|
}
|
|
}
|