27 lines
507 B
JavaScript
27 lines
507 B
JavaScript
"use strict";
|
|
/**
|
|
* Value object for email item.
|
|
*
|
|
* @constructor
|
|
*/
|
|
function EmailWindowVO() {
|
|
this.ticketData = [];
|
|
this.senderList = [];
|
|
}
|
|
// inherit BaseVO
|
|
EmailWindowVO.prototype = new BaseVO();
|
|
// correct the constructor pointer
|
|
EmailWindowVO.prototype.constructor = EmailWindowVO;
|
|
/**
|
|
* @override
|
|
* @return {Array}
|
|
*/
|
|
EmailWindowVO.prototype.getProps = function () {
|
|
return ["ticketData", "senderList"];
|
|
};
|
|
/**
|
|
* @override
|
|
*/
|
|
EmailWindowVO.prototype.postBuild = function () {
|
|
};
|