mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-09 08:30:55 +08:00
16 lines
363 B
Java
16 lines
363 B
Java
package com.openisle.dto;
|
|
|
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
import java.util.List;
|
|
|
|
@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;
|
|
} |