10 lines
281 B
C#
10 lines
281 B
C#
namespace DysonNetwork.Pass.Features.Auth.Models;
|
|
|
|
public class OidcCallbackData
|
|
{
|
|
public string Code { get; set; } = string.Empty;
|
|
public string State { get; set; } = string.Empty;
|
|
public string? Error { get; set; }
|
|
public string? ErrorDescription { get; set; }
|
|
}
|