รายการ web services

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2024-11-26 16:51:07 +07:00
parent ae55c3b489
commit 70bebf6e7e
5 changed files with 67 additions and 7 deletions

View file

@ -0,0 +1,13 @@
interface ListWebServices {
id: string;
topic: string;
access: string[];
amount: string;
}
interface ListApi {
label: string;
value: string;
}
export type { ListWebServices, ListApi };

View file

@ -0,0 +1,6 @@
interface FormCreate {
topic: string;
access: string[];
}
export type { FormCreate };

View file

@ -0,0 +1,8 @@
interface ResListWebServices {
id: string;
topic: string;
access: string[];
amount: string;
}
export type { ResListWebServices };