11 lines
241 B
TypeScript
11 lines
241 B
TypeScript
|
|
export type UserProfile = {
|
||
|
|
userName: string;
|
||
|
|
name: string;
|
||
|
|
role: string;
|
||
|
|
roleId: number;
|
||
|
|
accessRooms: number[];
|
||
|
|
createdAt?: string | null;
|
||
|
|
createdBy?: string | null;
|
||
|
|
updatedAt?: string | null;
|
||
|
|
updatedBy?: string | null;
|
||
|
|
};
|