1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.example.server.progressTrack.Dto;
|
| import lombok.Data;
|
| @Data
| public class Coordinate {
| private Integer x;
| private Integer y;
| private Integer width;
| private Integer height;
| private String type;
|
| public Coordinate(Integer x, Integer y, Integer width, Integer height, String type) {
| this.x = x;
| this.y = y;
| this.width = width;
| this.height = height;
| this.type = type;
| }
| }
|
|