001package co.codewizards.cloudstore.core.dto;
002
003import javax.xml.bind.annotation.XmlRootElement;
004
005@XmlRootElement
006public class DeleteModificationDTO extends ModificationDTO {
007
008        private String path;
009
010        public String getPath() {
011                return path;
012        }
013        public void setPath(String path) {
014                this.path = path;
015        }
016
017}