-
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.
[#38]Feat: Create ThemePlaceResponse dto
- Loading branch information
1 parent
914bf50
commit c8fad6d
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
YAPP-BE/src/main/java/yapp/domain/townMap/dto/response/ThemePlaceResponse.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,17 @@ | ||
package yapp.domain.townMap.dto.response; | ||
|
||
import lombok.Builder; | ||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Getter | ||
@Setter | ||
@Builder | ||
public class ThemePlaceResponse { | ||
private String name; | ||
private String address; | ||
private Double x; | ||
private Double y; | ||
private String subCategory; | ||
private String foodCategory; | ||
} |