Yuna/Yuna.OauthServer/Endpoints/Auth/DTO/AuthRequest.cs

15 lines
350 B
C#

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