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

mn.foreman.api.model.Pool Maven / Gradle / Ivy

There is a newer version: 1.78.0
Show newest version
package mn.foreman.api.model;

import lombok.Builder;
import lombok.Data;

/** A mining pool. */
@Data
@Builder
public class Pool {

    /** The pool password. */
    private final String password;

    /** The pool URL. */
    private final String url;

    /** The pool username. */
    private final String username;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy