15 lines
415 B
C#
15 lines
415 B
C#
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<Result<UserProfileDto>>;
|