mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-10 17:38:41 +00:00
13 lines
201 B
JavaScript
13 lines
201 B
JavaScript
/**
|
|
* Account type.
|
|
*
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.2
|
|
* @version 1.0.0
|
|
* @since 1.0.0
|
|
*/
|
|
export const AccountType = Object.freeze({
|
|
USER: 0,
|
|
GROUP: 1
|
|
});
|