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

9 lines
147 B
TypeScript
Raw Normal View History

interface FormUser {
username: string;
password: string;
firstName: string;
lastName: string;
email: string;
2024-05-29 17:58:57 +07:00
}
export type { FormUser };