blob: d36e748f2c8c82c50e73202305384d9eb56aa984 [file] [log] [blame]
夜雨声烦5c9d1312025-04-23 17:46:19 +08001package com.example.g8backend.dto;
2
3import java.util.List;
4
5public class CommentDTO {
6 private Long commentId;
7 private Long userId;
8 private String content;
9 private List<CommentDTO> replies;
10
11 // Getter and Setter
12}