jsOMS/Account/Account.js
2019-04-02 22:46:48 +02:00

31 lines
405 B
JavaScript

/**
* Account.
*
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @since 1.0.0
*/
export class Account {
/**
* @constructor
*
* @since 1.0.0
*/
constructor ()
{
this.id = 0;
};
/**
* Get id.
*
* @return {int}
*
* @since 1.0.0
*/
getId ()
{
return this.id;
};
};