mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-11 17:58:41 +00:00
9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
(function (jsOMS, undefined) {
|
|
jsOMS.Account = function () {
|
|
this.login = '';
|
|
this.password = '';
|
|
this.id = 0;
|
|
this.auth = null;
|
|
};
|
|
}(window.jsOMS = window.jsOMS || {}));
|