2023-02-02 09:42:58 +00:00

18 lines
363 B
TypeScript

export type User = {
uuid: string;
email: string;
phone?: string;
username: string;
firstname: string;
middlename?: string;
lastname: string;
password: string;
groups?: any;
enabled: boolean;
refreshTokenCount: number;
profilePic: string;
resetRequestedTimestamp?: string;
actions?: any;
id: number;
};