tolulope-od/banka

View on GitHub
server/dummyModels/User.js

Summary

Maintainability
A
0 mins
Test Coverage
export default class User {
  constructor() {
    this.id = null;
    this.email = null;
    this.firstName = null;
    this.lastName = null;
    this.password = null;
    this.address = null;
    this.avatar = null;
    this.phoneNumber = null;
    this.type = null;
    this.isAdmin = false;
    this.createdAt = null;
    this.updatedAt = null;
  }
}