Rename InvokeReferencesDto to InvokeReferences project-wide

Replaced all usages of InvokeReferencesDto with InvokeReferences across controllers, commands, and DTOs. This change standardizes the reference type naming by removing the "Dto" suffix, with no changes to the structure or behavior.
This commit is contained in:
2026-04-16 09:51:15 +02:00
parent b1924f2a4a
commit d3d5ebac61
5 changed files with 6 additions and 6 deletions

View File

@@ -9,7 +9,7 @@ namespace ReC.Application.RecActions.Commands;
public record InvokeBatchRecActionViewsCommand : IRequest
{
public long ProfileId { get; init; }
public InvokeReferencesDto? References { get; init; }
public InvokeReferences? References { get; init; }
}
public class InvokeRecActionViewsCommandHandler(ISender sender, ILogger<InvokeRecActionViewsCommandHandler>? logger = null) : IRequestHandler<InvokeBatchRecActionViewsCommand>

View File

@@ -18,10 +18,10 @@ namespace ReC.Application.RecActions.Commands;
public record InvokeRecActionViewCommand : IRequest
{
public RecActionViewDto Action { get; set; } = null!;
public required InvokeReferencesDto References { get; set; }
public required InvokeReferences References { get; set; }
}
public record InvokeReferencesDto
public record InvokeReferences
{
public required string BatchId { get; init; }
public string? Reference1 { get; init; }