KeyValueログモデル作成

This commit is contained in:
r-ca 2024-01-08 12:35:30 +09:00
parent 48101190a2
commit 88dfae7d37
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View 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;
}
}