package org.intermine.app.core.model; /* * Copyright (C) 2015 InterMine * * This code may be freely distributed and modified under the * terms of the GNU Lesser General Public Licence. This should * be distributed with the code. See the LICENSE file for more * information or http://www.gnu.org/copyleft/lesser.html. * */ import com.google.gson.annotations.SerializedName; /** * @author Daria Komkova <Daria_Komkova @ hotmail.com> */ public class Attribute { @SerializedName("name") private String mName; @SerializedName("type") private String mType; public String getName() { return mName; } public void setName(String name) { mName = name; } public String getType() { return mType; } public void setType(String type) { mType = type; } }