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

org.springdoc.demo.resource.web.dto.FooDTO Maven / Gradle / Ivy

There is a newer version: 3.1.5
Show newest version
package org.springdoc.demo.resource.web.dto;

public class FooDTO {
    private long id;
    private String name;

    public FooDTO() {
        super();
    }

    public FooDTO(final long id, final String name) {
        super();

        this.id = id;
        this.name = name;
    }

    //

    public long getId() {
        return id;
    }

    public void setId(final long id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy