feat(ObejctDto): add ControlsUpdates property

This commit is contained in:
tekh 2025-08-04 17:25:43 +02:00
parent 142a1a4faa
commit d4ea68fc0e

View File

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