Files
Java-Spring-CRQS-Eventsourc…/src/main/java/com/eventsourcing/exceptions/NotFoundResponseDTO.java
2022-04-13 16:36:27 +03:00

7 lines
163 B
Java

package com.eventsourcing.exceptions;
import java.time.LocalDateTime;
public record NotFoundResponseDTO(int Status, String message, LocalDateTime timestamp) {
}