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 b867268 commit dd047dfCopy full SHA for dd047df
src/main/java/hexlet/code/dto/task/TaskDTO.java
@@ -0,0 +1,26 @@
1
+package hexlet.code.dto.task;
2
+
3
+import com.fasterxml.jackson.annotation.JsonProperty;
4
+import lombok.Getter;
5
+import lombok.Setter;
6
7
+import java.time.LocalDate;
8
9
+@Getter
10
+@Setter
11
+public class TaskDTO {
12
+ private Long id;
13
14
+ private Integer index;
15
16
+ private LocalDate createdAt;
17
18
+ @JsonProperty("assignee_id")
19
+ private Long assigneeId;
20
21
+ private String title;
22
23
+ private String content;
24
25
+ private String status;
26
+}
0 commit comments