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

io.quarkiverse.jsonrpc.sample.model.Pojo2 Maven / Gradle / Ivy

package io.quarkiverse.jsonrpc.sample.model;

import java.util.UUID;

public class Pojo2 {

    public long id;
    public String desc;
    public UUID ref;

    public Pojo2(long id, String desc, UUID ref) {
        this.id = id;
        this.desc = desc;
        this.ref = ref;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy