diff --git a/src/ReC.Application/OutResults/Commands/DeleteOutResCommand.cs b/src/ReC.Application/OutResults/Commands/DeleteOutResCommand.cs new file mode 100644 index 0000000..9d56077 --- /dev/null +++ b/src/ReC.Application/OutResults/Commands/DeleteOutResCommand.cs @@ -0,0 +1,10 @@ +using MediatR; + +namespace ReC.Application.OutResults.Commands; + +public record DeleteOutResCommand : IRequest +{ + public long? ActionId { get; init; } + + public long? ProfileId { get; init; } +}