/* * Copyright (C) 2012 Square, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.mgw.member.ottoEvent; /** * app可以更新 打开更新activity * @author huyan *备注:采用eventbus事件订阅总线框架 */ public class AppShouldUpdateEvent { private boolean isCanUpdate; private String fv_exp; public String getFv_exp() { return fv_exp; } public void setFv_exp(String fv_exp) { this.fv_exp = fv_exp; } private String FVersion_Name; private String FVersion_FileURL; public String getFVersion_Name() { return FVersion_Name; } public void setFVersion_Name(String fVersion_Name) { FVersion_Name = fVersion_Name; } public String getFVersion_FileURL() { return FVersion_FileURL; } public void setFVersion_FileURL(String fVersion_FileURL) { FVersion_FileURL = fVersion_FileURL; } public boolean isCanUpdate() { return isCanUpdate; } public void setCanUpdate(boolean isCanUpdate) { this.isCanUpdate = isCanUpdate; } }