จัดการผู้ใช้งาน

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-05-30 14:04:48 +07:00
parent badb676529
commit d85f67506f
12 changed files with 554 additions and 22 deletions

View file

@ -1,7 +1,8 @@
interface DataListsObject {
id: number;
count: number;
name: string;
interface FormUser {
username: string;
password: string;
firstName: string;
lastName: string;
email: string;
}
export type { DataListsObject };
export type { FormUser };