Resclone/src/main/java/io/gitlab/jfronny/resclone/data/PackMetaUnloaded.java

17 lines
448 B
Java
Raw Normal View History

2020-12-29 16:14:53 +01:00
package io.gitlab.jfronny.resclone.data;
public class PackMetaUnloaded {
2021-04-03 02:40:38 +02:00
public final String fetcher;
public final String source;
public final String name;
public final boolean forceDownload;
2020-12-29 16:14:53 +01:00
public PackMetaUnloaded(String fetcher, String source, String name, boolean forceDownload) {
2020-12-29 16:14:53 +01:00
this.fetcher = fetcher;
this.source = source;
this.name = name;
this.forceDownload = forceDownload;
2020-12-29 16:14:53 +01:00
}
2021-04-03 02:40:38 +02:00
}