felicity-lims/frontend/vite/src/models/auth.ts

8 lines
155 B
TypeScript
Raw Normal View History

2021-11-12 05:30:10 +08:00
export interface IAuth {
uid?: string;
email?: string;
username?: string;
firstName?: string;
lastName?: string;
role?: string;
}