Skip to content

Commit 2eb8035

Browse files
committed
feat(TimeRequest): [8단계] 예약 시간 요청에 사용할 DTO 생성
1 parent 8f20448 commit 2eb8035

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package roomescape.model.time;
2+
3+
import com.fasterxml.jackson.annotation.JsonProperty;
4+
5+
public class TimeRequest {
6+
@JsonProperty("time")
7+
private String time;
8+
9+
public TimeRequest() {
10+
}
11+
12+
public String getTime() {
13+
return time;
14+
}
15+
16+
public void setTime(String time) {
17+
this.time = time;
18+
}
19+
}

0 commit comments

Comments
 (0)