import Base from './base'
|
class ActDetails extends Base {
|
constructor (attr) {
|
super(attr)
|
this.fileUrl = attr.fileUrl || null
|
this.fileId = attr.fileId || null
|
this.content = attr.content || null
|
this.promotionId = attr.promotionId || null
|
this.fixedPosition = attr.fixedPosition || false
|
this.closeBtn = attr.closeBtn || false
|
this.promotionType = attr.promotionType || null
|
}
|
}
|
export default ActDetails
|