Initial commit
This commit is contained in:
12
src/nodash/models/NoByteSet.java
Normal file
12
src/nodash/models/NoByteSet.java
Normal file
@@ -0,0 +1,12 @@
|
||||
package nodash.models;
|
||||
|
||||
public final class NoByteSet {
|
||||
public byte[] key;
|
||||
public byte[] data;
|
||||
|
||||
public NoByteSet(byte[] key, byte[] data) {
|
||||
this.key = key;
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user