diff --git a/src/ReC.Application/RecActions/Commands/CreateRecActionCommand.cs b/src/ReC.Application/RecActions/Commands/CreateRecActionCommand.cs index bd2f4c1..3d6e0e0 100644 --- a/src/ReC.Application/RecActions/Commands/CreateRecActionCommand.cs +++ b/src/ReC.Application/RecActions/Commands/CreateRecActionCommand.cs @@ -1,7 +1,7 @@ using DigitalData.Core.Abstraction.Application.Repository; using DigitalData.Core.Exceptions; using MediatR; -using ReC.Application.Common.Dto; +using ReC.Domain.Entities; using ReC.Application.Endpoints.Commands; namespace ReC.Application.RecActions.Commands; @@ -27,7 +27,7 @@ public record CreateRecActionCommand : IRequest public long? EndpointAuthId { get; set; } } -public class CreateRecActionCommandHandler(ISender sender, IRepository repo) : IRequestHandler +public class CreateRecActionCommandHandler(ISender sender, IRepository repo) : IRequestHandler { public async Task Handle(CreateRecActionCommand request, CancellationToken cancel) {