13 lines
283 B
C#
13 lines
283 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace PlaylistShared.Shared.DTO;
|
|
|
|
public class ExternalLoginCallbackRequest
|
|
{
|
|
[JsonPropertyName("code")]
|
|
public string Code { get; set; } = null!;
|
|
|
|
[JsonPropertyName("state")]
|
|
public string State { get; set; } = null!;
|
|
}
|