/* * Copyright (C) 2016 Glucosio Foundation * * This file is part of Glucosio. * * Glucosio is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 3. * * Glucosio is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Glucosio. If not, see <http://www.gnu.org/licenses/>. * * */ package org.glucosio.android.object; /** * Created by paolo on 24/10/15. */ public class ActionTip { private String tipTitle; private String tipDescription; private String tipAction; public String getTipTitle() { return tipTitle; } public void setTipTitle(String tipTitle) { this.tipTitle = tipTitle; } public String getTipDescription() { return tipDescription; } public void setTipDescription(String tipDescription) { this.tipDescription = tipDescription; } public String getTipAction() { return tipAction; } public void setTipAction(String tipAction) { this.tipAction = tipAction; } }