package io.gitlab.jfronny.resclone.data; import java.nio.file.Path; public class PackMetaLoaded { public final Path zipPath; public final String name; public final boolean forceEnable; public PackMetaLoaded(Path zipPath, String name, boolean forceEnable) { this.zipPath = zipPath; this.name = name; this.forceEnable = forceEnable; } }