export class FilesPathModel {

    constructor (private path: string) {
    }

    public getPath (): string {
        return this.path;
    }

}
