argos/dmp-backend/notification-service/notification/src/main/java/gr/cite/notification/common/types/notificationtemplate/FieldInfoEntity.java

43 lines
716 B
Java

package gr.cite.notification.common.types.notificationtemplate;
import gr.cite.notification.common.types.notification.DataType;
public class FieldInfoEntity {
private String key;
private DataType type;
private String value;
public FieldInfoEntity(String key, DataType type, String value) {
this.key = key;
this.type = type;
this.value = value;
}
public FieldInfoEntity() {
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public DataType getType() {
return type;
}
public void setType(DataType type) {
this.type = type;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}