mirror of
https://github.com/alireza0/x-ui.git
synced 2026-03-14 05:23:09 +00:00
22 lines
369 B
JavaScript
22 lines
369 B
JavaScript
class User {
|
|
username = "";
|
|
password = "";
|
|
}
|
|
|
|
class Msg {
|
|
success = false;
|
|
msg = "";
|
|
obj = null;
|
|
|
|
constructor(success, msg, obj) {
|
|
if (success != null) {
|
|
this.success = success;
|
|
}
|
|
if (msg != null) {
|
|
this.msg = msg;
|
|
}
|
|
if (obj != null) {
|
|
this.obj = obj;
|
|
}
|
|
}
|
|
} |