gdxapp4d/gdxapp4d-lib-warpme/src/main/java/love/distributedrebirth/warpme/hash/WaterSoftHash.java

35 lines
620 B
Java
Raw Normal View History

2022-02-21 18:19:25 +01:00
package love.distributedrebirth.warpme.hash;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
2022-08-24 17:33:39 +02:00
@BãßBȍőnAuthorInfoʸᴰ(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
2022-02-23 17:16:54 +01:00
public class WaterSoftHash {
2022-02-21 18:19:25 +01:00
private String file;
2022-02-23 17:11:05 +01:00
private String hex;
2022-02-23 17:16:54 +01:00
public WaterSoftHash() {
2022-02-23 17:11:05 +01:00
}
2022-02-23 17:16:54 +01:00
public WaterSoftHash(String file, String hex) {
2022-02-23 17:11:05 +01:00
setFile(file);
setHex(hex);
}
2022-02-21 18:19:25 +01:00
public String getFile() {
return file;
}
public void setFile(String file) {
this.file = file;
}
2022-02-23 17:11:05 +01:00
public String getHex() {
return hex;
2022-02-21 18:19:25 +01:00
}
2022-02-23 17:11:05 +01:00
public void setHex(String hex) {
this.hex = hex;
2022-02-21 18:19:25 +01:00
}
}