We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f20448 commit 2eb8035Copy full SHA for 2eb8035
src/main/java/roomescape/model/time/TimeRequest.java
@@ -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