E513Response.java 437 Bytes
Newer Older
xucl committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package com.fadu.app.bean.e;

import com.fadu.app.bean.BaseResponse;

public class E513Response extends BaseResponse {

    public static final String SHARE_TEXT = "您已对律师做出评价,把律师分享给更多的朋友认识吧!";

    private String shareText ;

    public String getShareText() {
        return shareText;
    }

    public void setShareText(String shareText) {
        this.shareText = shareText;
    }
}