using MediatR; namespace Knot.Contracts.Profiles.Application.DTOs; public record SearchProfilesRequest(string Query, int Limit = 20) : IRequest>; public record UpdateProfileRequest( string? DisplayName, string? About, string? Avatar, bool RemoveAvatar = false ) : IRequest; public record UpdateSettingsRequest( bool? ShowLastSeen, bool? ShowAvatar, bool? ShowAbout, bool? ShowPhoneNumber, bool? ShowForwardedMessages, bool? ShowAddToGroupPermission ) : IRequest;