-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 이동봉사 신청 취소, 승인, 반려, 봉사 완료 API 응답 추가 (#141)
- Loading branch information
1 parent
d8ee939
commit 8055f3a
Showing
3 changed files
with
32 additions
and
19 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
7 changes: 7 additions & 0 deletions
7
...a/com/pawwithu/connectdog/domain/application/dto/response/ApplicationSuccessResponse.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,7 @@ | ||
package com.pawwithu.connectdog.domain.application.dto.response; | ||
|
||
public record ApplicationSuccessResponse(Boolean isSuccess) { | ||
public static ApplicationSuccessResponse of(Boolean isSuccess) { | ||
return new ApplicationSuccessResponse(isSuccess); | ||
} | ||
} |
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