Query.cs 185 B

12345
  1. using Application.Abstractions.Messaging;
  2. namespace Application.Features.Api.Feed.GetSuggestedFollows;
  3. public sealed record Query(int? ViewerMemberID, int Top = 5) : IQuery<Response>;