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

com.bitcoin.blockchain.api.domain.Instrument Maven / Gradle / Ivy

package com.bitcoin.blockchain.api.domain;

import java.io.Serializable;

/**
 * Created by Jesion on 2015-05-21.
 */
public class Instrument implements Serializable {

    public String id;

    public String name;

    public Instrument() {

    }

    public Instrument(String id, String name) {
        this.id = id;
        this.name = name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy