package com.weikou.beibeivideo.entity.ad;
|
|
import com.bytedance.sdk.openadsdk.TTRewardVideoAd;
|
|
//信息流原生广告容器
|
public class RewardVideoAdContainer {
|
|
private TTRewardVideoAd csj;
|
|
public RewardVideoAdContainer(TTRewardVideoAd csj) {
|
this.csj = csj;
|
}
|
|
public TTRewardVideoAd getCsj() {
|
return csj;
|
}
|
|
public void setCsj(TTRewardVideoAd csj) {
|
this.csj = csj;
|
}
|
|
}
|