GetConfigQuery.cs 129 B

123456
  1. using MediatR;
  2. namespace Application.Features.Config.Queries
  3. {
  4. public sealed record GetConfigQuery : IRequest<ConfigDto?>;
  5. }