OwenKelvin/Angular-School-Management-System

View on GitHub
src/app/core/interfaces/user.interface.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface UserInterface {
    id: number;
    username: string;
    password: string;
    firstName: string;
    lastName: string;
    access_token: string;
}