8 lines
248 B
C#
8 lines
248 B
C#
namespace BackOffice.BFF.Application.ConfigurationCQ.Commands.DeactivateConfiguration;
|
|
|
|
public record DeactivateConfigurationCommand : IRequest<Unit>
|
|
{
|
|
public string Key { get; init; } = string.Empty;
|
|
public string? Reason { get; init; }
|
|
}
|