19 lines
304 B
TypeScript
19 lines
304 B
TypeScript
interface Users {
|
|
email: string;
|
|
firstName: string;
|
|
id: string;
|
|
lastName: string;
|
|
username: string;
|
|
roles: Roles;
|
|
}
|
|
|
|
interface Roles {
|
|
clientRole?: boolean;
|
|
composite?: boolean;
|
|
containerId?: string;
|
|
description: string;
|
|
id: string;
|
|
name: string;
|
|
}
|
|
|
|
export type { Users, Roles };
|