import Base from './base'
|
class ChoiceActivity extends Base {
|
constructor (attr) {
|
super(attr)
|
this.fileUrl = attr.fileUrl || null
|
this.fileId = attr.fileId || null
|
this.promotionId = attr.promotionId || null
|
this.isDisplayProd = attr.isDisplayProd || '2'
|
}
|
}
|
export default ChoiceActivity
|