BeesPlus/src/main/java/com/tomff/beesplus/core/migrations/Field.java

20 lines
356 B
Java
Raw Normal View History

2020-07-03 21:16:02 +02:00
package com.tomff.beesplus.core.migrations;
public class Field {
private final String path;
private final Object value;
public Field(String path, Object value) {
this.path = path;
this.value = value;
}
public String getPath() {
return path;
}
public Object getValue() {
return value;
}
}