hrms-admin/src/modules/02_users/interface/request/Main.ts

20 lines
321 B
TypeScript
Raw Normal View History

interface FormUser {
username: string;
password: string | undefined;
firstName: string;
lastName: string;
email: string;
roles: string[] | undefined;
2024-05-29 17:58:57 +07:00
}
interface FormRole {
role: string;
description: string;
}
interface Roles {
id: string;
name: string;
}
export type { FormUser, FormRole, Roles };