Resclone/src/main/java/io/gitlab/jfronny/resclone/util/Result.java

15 lines
326 B
Java
Raw Normal View History

2021-04-03 02:40:38 +02:00
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;
}
}