7 lines
163 B
Java
7 lines
163 B
Java
package com.eventsourcing.exceptions;
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
public record NotFoundResponseDTO(int Status, String message, LocalDateTime timestamp) {
|
|
}
|