芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/cloud.pulsehost.co.uk/modules/MailWebclient/js/models/CForwardModel.js
'use strict'; var Types = require('%PathToCoreWebclientModule%/js/utils/Types.js') ; /** * @constructor */ function CForwardModel() { this.iAccountId = 0; this.enable = false; this.keepcopy = false; this.email = ''; } /** * @param {number} iAccountId * @param {Object} oData */ CForwardModel.prototype.parse = function (iAccountId, oData) { this.iAccountId = iAccountId; this.enable = !!oData.Enable; this.keepcopy = !!oData.KeepMessageCopy; this.email = Types.pString(oData.Email); }; module.exports = CForwardModel;