001package co.codewizards.cloudstore.ls.core.dto;
002
003
004public abstract class AbstractRequestWithExistingLocalRepoDto {
005
006        private String localRoot;
007
008        /**
009         * Gets the absolute path to the local root.
010         * @return the absolute path to the local root.
011         */
012        public String getLocalRoot() {
013                return localRoot;
014        }
015
016        public void setLocalRoot(String localRoot) {
017                this.localRoot = localRoot;
018        }
019}