com.github.cleydyr.dart.command.parameter.ParameterPair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dart-sass-maven-plugin Show documentation
Show all versions of dart-sass-maven-plugin Show documentation
A Maven plugin that allows to compile SASS using Dart Sass
package com.github.cleydyr.dart.command.parameter;
import java.nio.file.Path;
public class ParameterPair {
Path inputPath;
Path outputPath;
public ParameterPair(Path inputPath, Path outputPath) {
super();
this.inputPath = inputPath;
this.outputPath = outputPath;
}
public Path getInputPath() {
return inputPath;
}
public Path getOutputPath() {
return outputPath;
}
}