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

    }
}