drawio/war/js/diagramly/DrawioUser.js
David Benson 3c75dc69a8 6.4.1 release
Former-commit-id: 5f8102fae0
2017-03-24 11:59:37 +00:00

21 lines
475 B
JavaScript

/**
* Copyright (c) 2006-2017, JGraph Ltd
* Copyright (c) 2006-2017, Gaudenz Alder
*/
DrawioUser = function(id, email, displayName, pictureUrl, locale)
{
// Unique ID of the user for the current storage system
this.id = id;
// Email address of the user
this.email = email;
// Display name of the user
this.displayName = displayName;
// URL to an image of the user
this.pictureUrl = pictureUrl;
// country code locale of the user
this.locale = locale;
};