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!;
}