mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2025-04-13 03:30:48 +00:00
Revert "KeyValueログモデル作成"
This reverts commit b75759b6501950078f2ef7349a3c6cd57c304619.
This commit is contained in:
parent
28b5f97c31
commit
de4a501c3f
@ -1,31 +0,0 @@
|
||||
package one.nem.lacerta.model;
|
||||
|
||||
public class KeyValueLog {
|
||||
|
||||
String key;
|
||||
String value;
|
||||
|
||||
public KeyValueLog(String key, String value) {
|
||||
this.key = key;
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
// Getter
|
||||
public String getKey() {
|
||||
return key;
|
||||
}
|
||||
|
||||
public String getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
// Setter
|
||||
public void setKey(String key) {
|
||||
this.key = key;
|
||||
}
|
||||
|
||||
public void setValue(String value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user