mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-12 10:00:58 +08:00
16 lines
322 B
Java
16 lines
322 B
Java
package com.openisle.dto;
|
|
|
|
import java.time.LocalDateTime;
|
|
import lombok.Data;
|
|
|
|
/** DTO for comment information in user profiles. */
|
|
@Data
|
|
public class CommentInfoDto {
|
|
|
|
private Long id;
|
|
private String content;
|
|
private LocalDateTime createdAt;
|
|
private PostMetaDto post;
|
|
private ParentCommentDto parentComment;
|
|
}
|