package com.healthcare.ohctech.dto; import java.time.LocalDateTime; import java.time.LocalDate; public record ShiftStatusDetailsDto(Long id, LocalDate recordDate, Long shiftId, LocalDateTime startDateTime, LocalDateTime endDateTime, String currentStatus, Long ohcTypeId, Long modifiedBy, LocalDateTime lastModified) { }