-
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.
Merge pull request #79 from SWM-WeLike2Coding/feat/likeCount
feat: 좋아요 추가 삭제 시 현재 좋아요 개수를 반환하도록 구현
- Loading branch information
Showing
2 changed files
with
18 additions
and
2 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
13 changes: 13 additions & 0 deletions
13
.../com/wl2c/elswhereproductservice/domain/like/model/dto/response/ResponseLikeCountDto.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,13 @@ | ||
package com.wl2c.elswhereproductservice.domain.like.model.dto.response; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public class ResponseLikeCountDto { | ||
|
||
private final int likeCount; | ||
|
||
public ResponseLikeCountDto(int likeCount) { | ||
this.likeCount = likeCount; | ||
} | ||
} |