Skip to content
Snippets Groups Projects
Commit 01d1fdda authored by Jens Christian Aanestad's avatar Jens Christian Aanestad
Browse files

feat/Created new NotificationDTO entity

parent 0a647778
No related branches found
No related tags found
1 merge request!78Feat/notifications
package no.ntnu.idi.stud.savingsapp.dto.notification;
import java.sql.Timestamp;
import lombok.Data;
import no.ntnu.idi.stud.savingsapp.model.notification.NotificationType;
@Data
public class NotificationDTO {
private long id;
private String message;
private boolean unread;
private NotificationType notificationType;
private Timestamp createdAt;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment