Query.cs 196 B

12345
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Api.Crypto.Ticker.GetAll;
  3. public sealed record Query(string? Quote = null, bool FeaturedOnly = false) : IQuery<Response>;