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

example.domain.NameDTO Maven / Gradle / Ivy

The newest version!
package example.domain;

import io.micronaut.core.annotation.Introspected;

@Introspected
public class NameDTO {
    private String name;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy