mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-12 01:51:02 +08:00
13 lines
267 B
Java
13 lines
267 B
Java
package com.openisle.dto;
|
|
|
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
|
|
@Data
|
|
public class MessageDto {
|
|
private Long id;
|
|
private String content;
|
|
private UserSummaryDto sender;
|
|
private Long conversationId;
|
|
private LocalDateTime createdAt;
|
|
} |