f77e6d93ac
Former-commit-id: 42bd774df3
34 lines
590 B
JavaScript
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;
|
|
};
|