Response.cs 157 B

1234567
  1. namespace Application.Features.Api.Developers.Apps.CreateApp;
  2. public sealed record Response(
  3. int AppID,
  4. string ClientID,
  5. string ClientSecret
  6. );