Add Reference1-5 properties to UpdateResultDto

Added five optional string properties (Reference1 through Reference5) to UpdateResultDto for storing additional reference information related to update results. This enhances the DTO's flexibility for carrying extra context as needed.
This commit is contained in:
2026-04-14 20:43:01 +02:00
parent f329543793
commit a70aee6e28

View File

@@ -9,4 +9,9 @@ public record UpdateResultDto
public string? Info { get; set; }
public string? InfoDetail { get; set; }
public string? Error { get; set; }
public string? Reference1 { get; set; }
public string? Reference2 { get; set; }
public string? Reference3 { get; set; }
public string? Reference4 { get; set; }
public string? Reference5 { get; set; }
}