no message

This commit is contained in:
STW_TTTY\stwtt 2024-05-14 18:13:03 +07:00
parent d73f8b052f
commit 5895bbc9f2
7 changed files with 674 additions and 32 deletions

View file

@ -26,4 +26,21 @@ interface DataRow {
name?: string;
}
export type { DataResponse, DataRow };
interface FormDistrict {
id: string;
name: string;
districts: District[];
}
interface District {
id: string;
createdAt: string;
createdUserId: string;
lastUpdatedAt: string;
lastUpdateUserId: string;
createdFullName: string;
lastUpdateFullName: string;
name: string;
provinceId: string;
}
export type { DataResponse, DataRow,FormDistrict,District };