Добавьте файлы проекта.

This commit is contained in:
2024-07-10 20:19:26 +07:00
parent 212a005438
commit e3c69229ad
74 changed files with 5674 additions and 0 deletions

View File

@ -0,0 +1,14 @@
using Microsoft.AspNetCore.Components;
using System.Text.Json.Serialization;
namespace Yuna.OauthServer.Endpoints.Auth.DTO
{
public class AuthRequest
{
public string response_type { get; set; } = null!;
public string client_id { get; set; } = null!;
public string redirect_uri { get; set; } = null!;
}
}

View File

@ -0,0 +1,9 @@
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!;
}
}