mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 07:53:15 +00:00
KeyValueログモデル作成
This commit is contained in:
parent
48101190a2
commit
88dfae7d37
31
model/src/main/java/one/nem/lacerta/model/KeyValueLog.java
Normal file
31
model/src/main/java/one/nem/lacerta/model/KeyValueLog.java
Normal file
|
@ -0,0 +1,31 @@
|
|||
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…
Reference in New Issue
Block a user