/* * Copyright (c) 2016. The AppCan Open Source Project. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * * */ package org.zywx.wbpalmstar.base.vo; import java.io.Serializable; import java.util.List; /** * Created by ylt on 16/2/1. */ public class ShareInputVO implements Serializable { private static final long serialVersionUID = 8080883114713052859L; private int type=-1; private List<String> imgPaths; private String imgPath; private String text; private String packageName; private String className; private String title; private String subject; public List<String> getImgPaths() { return imgPaths; } public void setImgPaths(List<String> imgPaths) { this.imgPaths = imgPaths; } public String getImgPath() { return imgPath; } public void setImgPath(String imgPath) { this.imgPath = imgPath; } public String getText() { return text; } public void setText(String text) { this.text = text; } public String getPackageName() { return packageName; } public void setPackageName(String packageName) { this.packageName = packageName; } public int getType() { return type; } public void setType(int type) { this.type = type; } public String getClassName() { return className; } public void setClassName(String className) { this.className = className; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getSubject() { return subject; } public void setSubject(String subject) { this.subject = subject; } }