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