/**
* @classdesc
* Contains information about whether or not the current user is enabled on a CompleteFTP site and
* its home folder on the site.
* @class
* @hideconstructor
*/
SiteMapping = function () {
/**
* The name of the site.
*
* @type {String}
* @readonly
*/
this.siteName = null;
/**
* Is the current user enabled on this site?
*
* @type {Boolean}
*/
this.enabled = null;
/**
* The full virtual file-system path of the current user's home folder on this site.
*
* @type {String}
*/
this.homeFolder = null;
}