Query.cs 191 B

12345678
  1. using Application.Abstractions.Messaging;
  2. using SharedKernel.Results;
  3. namespace Application.Features.Api.MyPage.VerifyEmail;
  4. public sealed record Query(
  5. string Token
  6. ) : IQuery<Result>;