Response.cs 140 B

123456
  1. namespace Application.Features.Api.Auth.SocialAuthorizeUrl;
  2. public sealed record Response(
  3. string Provider,
  4. string AuthorizeUrl
  5. );