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:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user