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

model.events.ConnectionRequested Maven / Gradle / Ivy

There is a newer version: 1.3.9
Show newest version
package model.events;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import model.User;
@JsonIgnoreProperties(ignoreUnknown = true)

public class ConnectionRequested {

    private User toUser;

    public User getToUser() {
        return toUser;
    }

    public void setToUser(User toUser) {
        this.toUser = toUser;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy