Skip to content

Commit cae613d

Browse files
committed
[Chore]: 검색 시 필요한 요청 DTO 추가
1 parent b2d18af commit cae613d

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package com.back.domain.post.dto;
2+
3+
import com.back.domain.post.enums.PostCategory;
4+
import com.back.domain.post.enums.SearchType;
5+
6+
/**
7+
* 검색 조건
8+
* @param category (CHAT, SCENARIO, POLL)
9+
* @param searchType (TITLE, TITLE_CONTENT, AUTHOR)
10+
* @param keyword (검색어)
11+
*/
12+
public record PostSearchCondition(
13+
PostCategory category,
14+
SearchType searchType,
15+
String keyword
16+
) {
17+
}

0 commit comments

Comments
 (0)