This commit is contained in:
faris Aljohari
2024-07-17 10:58:01 +03:00
parent 439778fa23
commit f31bc09e6c
9 changed files with 632 additions and 1 deletions

View File

@ -0,0 +1,23 @@
export interface AddTapToRunSceneInterface {
success: boolean;
msg?: string;
result: {
id: string;
};
}
export interface GetTapToRunSceneByUnitInterface {
success: boolean;
msg?: string;
result: {
list: Array<{
id: string;
name: string;
status: string;
}>;
};
}
export interface DeleteTapToRunSceneInterface {
success: boolean;
msg?: string;
result: boolean;
}