@documment/mmp.core
Version:
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.0.1.
26 lines (25 loc) • 626 B
TypeScript
import { IPersona } from './persona.model';
import { Persona } from './persona.model';
export interface IUser {
id: number;
email: string;
username: string;
hasPasswordExpired: boolean;
isChangePasswordRequired: boolean;
persona: IPersona;
createdAt: string;
updatedAt: string;
clone(): IUser;
}
export declare class User implements IUser {
id: number;
email: string;
username: string;
hasPasswordExpired: boolean;
isChangePasswordRequired: boolean;
persona: Persona;
createdAt: string;
updatedAt: string;
constructor(params?: any);
clone(): User;
}