DirectConversationDto.java

package com.wavii.dto.dm;

import java.util.UUID;

public record DirectConversationDto(
        UUID otherUserId,
        String otherUserName,
        String lastMessage,
        String lastMessageAt
) {
}