package com.dingmouren.dingdingmusic.bean; /** * Created by dingmouren on 2017/2/13. */ public class LyricBean { private String lyric; private String lyric_txt; private int ret_code; public String getLyric() { return lyric; } public void setLyric(String lyric) { this.lyric = lyric; } public String getLyric_txt() { return lyric_txt; } public void setLyric_txt(String lyric_txt) { this.lyric_txt = lyric_txt; } public int getRet_code() { return ret_code; } public void setRet_code(int ret_code) { this.ret_code = ret_code; } }