mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-20 13:48:40 +00:00
40 lines
667 B
JavaScript
40 lines
667 B
JavaScript
/**
|
|
* Account.
|
|
*
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @since 1.0.0
|
|
*/
|
|
(function (jsOMS)
|
|
{
|
|
"use strict";
|
|
|
|
jsOMS.Autoloader.defineNamespace('jsOMS.Account');
|
|
|
|
jsOMS.Account.Account = class {
|
|
/**
|
|
* @constructor
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
constructor ()
|
|
{
|
|
this.id = 0;
|
|
};
|
|
|
|
/**
|
|
* Get id.
|
|
*
|
|
* @return {int}
|
|
*
|
|
* @method
|
|
*
|
|
* @since 1.0.0
|
|
*/
|
|
getId ()
|
|
{
|
|
return this.id;
|
|
};
|
|
};
|
|
}(window.jsOMS = window.jsOMS || {})); |