drawio/war/js/diagramly/DrawioUser.js
Gaudenz Alder f77e6d93ac 6.1.0.0 release
Former-commit-id: 42bd774df3
2017-02-11 09:29:14 +01:00

34 lines
590 B
JavaScript

/**
* Copyright (c) 2006-2017, JGraph Ltd
* Copyright (c) 2006-2017, Gaudenz Alder
*/
DrawioUser = function(id, email, displayName, pictureUrl)
{
/**
* Holds the x-coordinate of the point.
* @type number
* @default 0
*/
this.id = id;
/**
* Holds the x-coordinate of the point.
* @type number
* @default 0
*/
this.email = email;
/**
* Holds the x-coordinate of the point.
* @type number
* @default 0
*/
this.displayName = displayName;
/**
* Holds the x-coordinate of the point.
* @type number
* @default 0
*/
this.pictureUrl = pictureUrl;
};