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

io.rtr.alchemy.dto.requests.UpdateTreatmentRequest Maven / Gradle / Ivy

There is a newer version: 2.2.14
Show newest version
package io.rtr.alchemy.dto.requests;

import java.util.Optional;

public class UpdateTreatmentRequest {
    private Optional description;

    public UpdateTreatmentRequest() {}

    public UpdateTreatmentRequest(Optional description) {
        this.description = description;
    }

    public void setDescription(Optional description) {
        this.description = description;
    }

    public Optional getDescription() {
        return description;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy