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; } }