Response.cs 125 B

123456
  1. namespace Application.Features.Api.Auth.Register;
  2. public sealed record Response(
  3. int Id,
  4. bool IsRegisterEmailAuth
  5. );