15 lines
216 B
TypeScript
15 lines
216 B
TypeScript
import { Role } from '../entitites';
|
|
|
|
export interface IUser {
|
|
id: string;
|
|
username: string;
|
|
|
|
firstName: string;
|
|
lastName: string;
|
|
|
|
accessToken?: string;
|
|
refreshToken?: string;
|
|
|
|
role?: string | Role;
|
|
}
|