using Knot.Modules.Profiles.Contracts.Application.DTOs; using Knot.Shared.Kernel; using MediatR; namespace Knot.Modules.Profiles.Contracts.Application.Profiles.UpdateSettings; public record UpdateSettingsCommand( bool? ShowLastSeen, bool? ShowAvatar, bool? ShowAbout, bool? ShowPhoneNumber, bool? ShowForwardedMessages, bool? ShowAddToGroupPermission ) : IRequest>;