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 d9debfd commit 9a1ea5bCopy full SHA for 9a1ea5b
src/main/java/roomescape/model/Time.java
@@ -0,0 +1,27 @@
1
+package roomescape.model;
2
+
3
+public class Time {
4
5
+ private Long id;
6
+ private String time;
7
8
+ public Time(String time) {
9
+ this.time = time;
10
+ }
11
12
+ public Long getId() {
13
+ return id;
14
15
16
+ public void setId(Long id) {
17
+ this.id = id;
18
19
20
+ public String getTime() {
21
+ return time;
22
23
24
+ public void setTime(String time) {
25
26
27
+}
0 commit comments