Files
elink-test-master/src/main/java/com/eactive/testmaster/api/dto/MockConditionDTO.java
T
2024-01-23 11:24:09 +09:00

34 lines
542 B
Java

package com.eactive.testmaster.api.dto;
public class MockConditionDTO {
private String type;
private String key;
private String value;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}