feat: service category deleting

This commit is contained in:
2024-10-09 02:25:37 +03:00
parent 891b6cff9f
commit 35951c7019
5 changed files with 93 additions and 23 deletions

View File

@@ -0,0 +1,8 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type ServiceDeleteCategoryRequest = {
categoryId: number;
};

View File

@@ -0,0 +1,9 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type ServiceDeleteCategoryResponse = {
ok: boolean;
message: string;
};