-
Notifications
You must be signed in to change notification settings - Fork 1
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 #187 from Leets-Official/refactor/186-임박한-모임-조회-dt…
…o-수정 [refactor] 임박한 모임 조회 dto 수정
- Loading branch information
Showing
6 changed files
with
43 additions
and
9 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
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
14 changes: 14 additions & 0 deletions
14
src/main/java/com/example/eatmate/app/domain/meeting/dto/UpcomingMeetingResultDto.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,14 @@ | ||
package com.example.eatmate.app.domain.meeting.dto; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public class UpcomingMeetingResultDto { | ||
private UpcomingMeetingResponseDto upcomingMeetingResponseDto; | ||
private Boolean isOwn; | ||
|
||
public UpcomingMeetingResultDto (UpcomingMeetingResponseDto upcomingMeetingResponseDto, Boolean isOwn) { | ||
this.upcomingMeetingResponseDto = upcomingMeetingResponseDto; | ||
this.isOwn = isOwn; | ||
} | ||
} |
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