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

@@ -11,5 +11,5 @@ public record UpdateResultDto
public short? Info { get; set; }
public string? InfoDetail { get; set; }
public string? Error { get; set; }
public InvokeReferencesDto? References { get; set; }
public InvokeReferences? References { get; set; }
}