-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: 한번에 모든 모임에 대한 참여와 찜 정보를 가져오도록 수정
- Loading branch information
1 parent
c880e87
commit a64437e
Showing
4 changed files
with
47 additions
and
6 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
backend/src/main/java/mouda/backend/moim/infrastructure/dto/ChamyoCountResponse.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 mouda.backend.moim.infrastructure.dto; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public class ChamyoCountResponse { | ||
|
||
private final Long moimId; | ||
private final Integer count; | ||
|
||
public ChamyoCountResponse(Long moimId, Long count) { | ||
this.moimId = moimId; | ||
this.count = count.intValue(); | ||
} | ||
} |