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

br.zuq.osm.parser.model.Member Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package br.zuq.osm.parser.model;

/**
 *
 * @author Willy Tiengo
 */
public class Member {

    public String type;
    public String ref;
    public String role;

    public Member(String type, String ref, String role) {
        this.type = type;
        this.ref = ref;
        this.role = role;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy