package io.gitlab.jfronny.resclone.util; import java.nio.file.Path; public class Result { public final Path downloadPath; public final boolean freshDownload; public Result(Path downloadPath, boolean freshDownload) { this.downloadPath = downloadPath; this.freshDownload = freshDownload; } }