com.applitools.eyes.PropertyData Maven / Gradle / Ivy
package com.applitools.eyes;
public class PropertyData {
private String name;
private String value;
public PropertyData(String name, String value) {
this.name = name;
this.value = value;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy