Notification Dto
data class NotificationDto(val notificationId: Long, val messageType: NotificationType, val message: String?, val participantId: Long?, val participantName: String?, val queueId: Long?, val queueName: String?, val date: LocalDateTime, val read: Boolean)
DTO for returning a notification message
Constructors
Link copied to clipboard
constructor(notificationId: Long, messageType: NotificationType, message: String?, participantId: Long?, participantName: String?, queueId: Long?, queueName: String?, date: LocalDateTime, read: Boolean)