Skip to content

Commit

Permalink
[#38]Feat: Create ThemePlaceResponse dto
Browse files Browse the repository at this point in the history
  • Loading branch information
gmkim20713 committed Feb 15, 2023
1 parent 914bf50 commit c8fad6d
Showing 1 changed file with 17 additions and 0 deletions.
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;
}

0 comments on commit c8fad6d

Please sign in to comment.