user.js 249 B

1234567891011121314151617
  1. export class user {
  2. #nick;
  3. #apikey;
  4. constructor(nick, apikey) {
  5. this.#nick = nick;
  6. this.#apikey = apikey;
  7. }
  8. get nick() {
  9. return this.#nick;
  10. }
  11. get apikey() {
  12. return this.#apikey;
  13. }
  14. }