mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-02-18 21:10:57 +08:00
feat: relocate remaining dtos
This commit is contained in:
13
backend/src/main/java/com/openisle/dto/UserAggregateDto.java
Normal file
13
backend/src/main/java/com/openisle/dto/UserAggregateDto.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package com.openisle.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/** Aggregated user data including posts and replies. */
|
||||
@Data
|
||||
public class UserAggregateDto {
|
||||
private UserDto user;
|
||||
private List<PostMetaDto> posts;
|
||||
private List<CommentInfoDto> replies;
|
||||
}
|
||||
Reference in New Issue
Block a user