Skip to content

Commit

Permalink
[feat] 로그인한 사용자가 도시 보관했는지 여부 응답 DTO 추가
Browse files Browse the repository at this point in the history
related to: #127
  • Loading branch information
jo0oy committed Jan 26, 2024
1 parent 9813282 commit 8fe57d1
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.haejwo.tripcometrue.domain.store.dto.response;

import lombok.Builder;

public record CheckCityStoredResponseDto(
boolean isStored
) {

@Builder
public CheckCityStoredResponseDto {
}
}

0 comments on commit 8fe57d1

Please sign in to comment.