-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: ChattingHistoryCustomSlice, ChattingHistoryListDto 네이밍 변경
- Loading branch information
yumyeonghan
committed
Dec 19, 2023
1 parent
c3506b8
commit e003ee1
Showing
8 changed files
with
46 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
src/main/java/coffeemeet/server/chatting/history/service/dto/ChattingHistoryListDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package coffeemeet.server.chatting.history.service.dto; | ||
|
||
import java.util.List; | ||
|
||
public record ChattingHistoryListDto( | ||
List<ChattingHistory> contents, | ||
boolean hasNext | ||
) { | ||
|
||
public static ChattingHistoryListDto of(List<ChattingHistory> contents, | ||
boolean hasNext) { | ||
return new ChattingHistoryListDto(contents, hasNext); | ||
} | ||
|
||
} |
15 changes: 0 additions & 15 deletions
15
...in/java/coffeemeet/server/chatting/history/service/dto/ChattingMessageHistoryListDto.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters