PlotSquared/Core/src/main/java/com/plotsquared/core/util/FileBytes.java

13 lines
232 B
Java
Raw Normal View History

2020-04-15 21:26:54 +02:00
package com.plotsquared.core.util;
2015-09-13 06:04:31 +02:00
public class FileBytes {
2016-03-23 02:41:37 +01:00
2016-03-23 18:09:13 +01:00
public final String path;
public final byte[] data;
2016-03-23 02:41:37 +01:00
public FileBytes(String path, byte[] data) {
this.path = path;
this.data = data;
}
}