mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-11 17:41:04 +08:00
16 lines
320 B
Java
16 lines
320 B
Java
package com.openisle.dto;
|
|
|
|
import java.util.List;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* DTO representing the context of a comment including its post and previous comments.
|
|
*/
|
|
@Data
|
|
public class CommentContextDto {
|
|
|
|
private PostSummaryDto post;
|
|
private CommentDto targetComment;
|
|
private List<CommentDto> previousComments;
|
|
}
|