1/**
2 * Copyright (c) 2006-2017, JGraph Ltd
3 * Copyright (c) 2006-2017, Gaudenz Alder
4 */
5DrawioUser = function(id, email, displayName, pictureUrl, locale)
6{
7	// Unique ID of the user for the current storage system
8	this.id = id;
9
10	// Email address of the user
11	this.email = email;
12
13	// Display name of the user
14	this.displayName = displayName;
15
16	// URL to an image of the user
17	this.pictureUrl = pictureUrl;
18
19	// country code locale of the user
20	this.locale = locale;
21};
22