All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.molr.commons.domain.dto.TestValueDto Maven / Gradle / Ivy

package io.molr.commons.domain.dto;

public class TestValueDto {

    public final String text;

    public TestValueDto(String text) {
        this.text = text;
    }

    public TestValueDto() {
        this.text = null;
    }

    @Override
    public String toString() {
        return "TestValueDto{" +
                "text='" + text + '\'' +
                '}';
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy