remove checkin out of project & Refactoring code module 01_dashboard

This commit is contained in:
Warunee Tamkoo 2024-09-02 10:28:59 +07:00
parent ec80361a81
commit 75c0e27880
9 changed files with 105 additions and 1069 deletions

View file

@ -0,0 +1,34 @@
interface InboxList {
id: string;
subject: string;
body: string;
receiverUserId: string;
payload: Object | null;
isOpen: boolean;
receiveDate: Date | null;
openDate: Date | null;
createdFullName?: string;
createdAt?: Date;
}
interface InboxDetail {
no: string;
sender: string;
subject: string;
body: string;
ratingModel: number;
receiveDate?: string;
payload: Object | null;
isOpen: boolean;
}
interface MenuMainList {
icon: string;
title: string;
sub: string;
color: string;
path: string;
active: boolean;
}
export type { InboxList, InboxDetail, MenuMainList };