Merge branch 'develop' into dev-tee

This commit is contained in:
setthawutttty 2023-08-16 13:59:42 +07:00
commit dcf7240618
13 changed files with 1776 additions and 385 deletions

View file

@ -28,10 +28,10 @@ interface menuType {
}
interface notiType {
id: number;
id: string;
sender: string;
body: string;
timereceive: string;
timereceive: Date;
}
interface optionType {

View file

@ -0,0 +1,27 @@
interface ResponseInbox {
body: string;
createdAt: Date;
createdFullName: string;
createdUserId: string;
id: string;
isOpen: boolean;
lastUpdateFullName: string;
lastUpdateUserId: string;
lastUpdatedAt: Date;
openDate: Date | null;
payload: string;
receiveDate: Date;
receiverUserId: string;
subject: string;
}
interface DataInbox {
no: string;
sender: string;
subject: string;
timereceive: Date;
body: string;
ratingModel: number;
}
export type { ResponseInbox, DataInbox };