package com.cadlabel.dto.cad.annotation; import java.time.LocalDateTime; import java.util.List; public record CadStructureResponse( Long id, Long modelId, String structureName, String structureType, String purpose, String solution, String reason, String remark, List historyItems, LocalDateTime createdAt, LocalDateTime updatedAt ) { }