feat(Config): Erstellen, Lesen und Aktualisieren von DTOs unter Verwendung von Basis-DTOs zum Aktualisieren und Erstellen.

This commit is contained in:
Developer 02
2024-10-23 14:57:15 +02:00
parent 5ce6958122
commit adc33bfee1
4 changed files with 20 additions and 0 deletions

View File

@@ -4,6 +4,8 @@ namespace WorkFlow.Application.DTO
{
public record BaseUpdateDto
{
public required int Id { get; init; }
[JsonIgnore]
public required string ChangedWho { get; set; } = "UNKNOWN";