refactor: Beziehung zwischen „Object“ und „History“ hinzufügen.

This commit is contained in:
2025-08-01 15:08:30 +02:00
parent ec975a2bc3
commit 9d07b1e71c
5 changed files with 9 additions and 4 deletions

View File

@@ -9,4 +9,6 @@ public class ObjectDto
public string? CmdCheckIn { get; set; }
public ObjectStateDto? State { get; set; }
public IEnumerable<ObjectStateHistDto> StateHistories { get; set; } = Array.Empty<ObjectStateHistDto>();
}