จัดการข้แมูลผู้ใช้ => จัดการสิทธิ์

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-05-31 15:08:11 +07:00
parent 0d60113fd7
commit 60dd477afe
11 changed files with 2177 additions and 19 deletions

View file

@ -4,6 +4,16 @@ interface Users {
id: string;
lastName: string;
username: string;
roles: Roles;
}
export type { Users };
interface Roles {
clientRole?: boolean;
composite?: boolean;
containerId?: string;
description: string;
id: string;
name: string;
}
export type { Users, Roles };