summaryrefslogtreecommitdiff
path: root/src/routers/vault/types/GameAccount.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/routers/vault/types/GameAccount.js')
-rw-r--r--src/routers/vault/types/GameAccount.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/routers/vault/types/GameAccount.js b/src/routers/vault/types/GameAccount.js
new file mode 100644
index 0000000..fa94808
--- /dev/null
+++ b/src/routers/vault/types/GameAccount.js
@@ -0,0 +1,38 @@
+/**
+ * represents a generic game account
+ */
+module.exports = class GameAccount {
+ /** the GID of the account */
+ accountId = 0;
+ /** the login username */
+ userid = "";
+ /** the email address associated with the account */
+ email = null;
+ /** Char[] */
+ chars = [];
+ /** the last time the account logged in */
+ lastLogin = null;
+ /** the last IP that was used to log in */
+ lastIP = null;
+ /** the total number of times the account logged in */
+ loginCount = 0;
+ /** whether the account is banned */
+ banned = false;
+
+ constructor (id, name) {
+ this.accountId = id;
+ this.userid = name;
+ }
+
+ /**
+ * serialize for sending over the network
+ * @param {*} key
+ */
+ toJSON (key) {
+ return {
+ accountId: this.accountId,
+ name: this.userid,
+ chars: this.chars,
+ };
+ }
+}