File

src/auth/auth.model.ts

Index

Properties

Properties

id
id: string
Type : string
roles
roles:
username
username: string
Type : string
import { Role } from 'shared/model/Role';

export interface UserCredentials {
    readonly id: string;
    readonly username: string;
    readonly roles: readonly Role[];
}

export interface UserCredentialsWithPassword extends UserCredentials {
    readonly password: string;
}

results matching ""

    No results matching ""