mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 20:24:51 +08:00
44 lines
No EOL
1,000 B
JavaScript
44 lines
No EOL
1,000 B
JavaScript
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
|
|
|
|
(function (module, require) {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
ko = require('ko')
|
|
;
|
|
|
|
/**
|
|
* @param {string} iIndex
|
|
* @param {string} sGuID
|
|
* @param {string} sID
|
|
* @param {string} sUserID
|
|
* @param {string} sEmail
|
|
* @param {boolean} bIsPrivate
|
|
* @param {string} sArmor
|
|
* @constructor
|
|
*/
|
|
function OpenPgpKeyModel(iIndex, sGuID, sID, sUserID, sEmail, bIsPrivate, sArmor)
|
|
{
|
|
this.index = iIndex;
|
|
this.id = sID;
|
|
this.guid = sGuID;
|
|
this.user = sUserID;
|
|
this.email = sEmail;
|
|
this.armor = sArmor;
|
|
this.isPrivate = !!bIsPrivate;
|
|
|
|
this.deleteAccess = ko.observable(false);
|
|
}
|
|
|
|
OpenPgpKeyModel.prototype.index = 0;
|
|
OpenPgpKeyModel.prototype.id = '';
|
|
OpenPgpKeyModel.prototype.guid = '';
|
|
OpenPgpKeyModel.prototype.user = '';
|
|
OpenPgpKeyModel.prototype.email = '';
|
|
OpenPgpKeyModel.prototype.armor = '';
|
|
OpenPgpKeyModel.prototype.isPrivate = false;
|
|
|
|
module.exports = OpenPgpKeyModel;
|
|
|
|
}(module, require)); |