mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-09 00:21:13 +08:00
18 lines
351 B
Java
18 lines
351 B
Java
package com.openisle.dto;
|
|
|
|
import java.time.LocalDateTime;
|
|
import java.util.List;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class MessageDto {
|
|
|
|
private Long id;
|
|
private String content;
|
|
private UserSummaryDto sender;
|
|
private Long conversationId;
|
|
private LocalDateTime createdAt;
|
|
private MessageDto replyTo;
|
|
private List<ReactionDto> reactions;
|
|
}
|