apply difference between mailbox and account

This commit is contained in:
grimhilt
2023-03-26 14:55:13 +02:00
parent d0d666f4cb
commit a9d15027aa
11 changed files with 64 additions and 68 deletions

View File

@@ -0,0 +1,7 @@
export default class Account {
constructor(_id, _mail) {
this.id = _id;
this.email = _mail;
this.fetched = false;
}
}