10 lines
255 B
C#
10 lines
255 B
C#
namespace Yuna.OauthServer.Endpoints.Auth.DTO
|
|
{
|
|
public class AuthResponse
|
|
{
|
|
public string ResponseType { get;} = "code";
|
|
public string Code { get; set; } = null!;
|
|
public string RedirectUri { get; set; } = null!;
|
|
}
|
|
}
|