Skip to content

Commit b7391bc

Browse files
committed
feat: 마이바 목록 조회 DTO 추가
- 마이바 목록 조회 시 사용될 MyBarListResponseDto 클래스 추가 - 페이징 처리를 위한 nextCursor 필드 추가
1 parent 8081bd7 commit b7391bc

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package com.back.domain.mybar.dto;
2+
3+
import lombok.AllArgsConstructor;
4+
import lombok.Getter;
5+
6+
import java.util.List;
7+
8+
@Getter
9+
@AllArgsConstructor
10+
public class MyBarListResponseDto {
11+
private List<MyBarItemResponseDto> items;
12+
private Long nextCursor; // 다음 페이지 시작점(없으면 null)
13+
}

0 commit comments

Comments
 (0)