GiftModle.java
665 Bytes
package com.cnlive.gundam.video.model;
/**
* @author 陈硕
* @time 2017/6/28 19:05
* @desc ${TODD}
*/
public class GiftModle {
private String giftMessage;
private int imgSource;
public GiftModle(String giftMessage, int imgSource) {
this.giftMessage = giftMessage;
this.imgSource = imgSource;
}
public String getGiftMessage() {
return giftMessage;
}
public void setGiftMessage(String giftMessage) {
this.giftMessage = giftMessage;
}
public int getImgSource() {
return imgSource;
}
public void setImgSource(int imgSource) {
this.imgSource = imgSource;
}
}