feat: ud service

This commit is contained in:
2024-04-29 04:28:49 +03:00
parent 4431629cba
commit e3f6d982e5
3 changed files with 79 additions and 2 deletions

View File

@@ -28,6 +28,14 @@ class ServiceCreateCategoryRequest(CustomModelCamel):
category: ServiceCategorySchema
class ServiceUpdateRequest(CustomModelCamel):
data: ServiceSchema
class ServiceDeleteRequest(CustomModelCamel):
service_id: int
# endregion
@@ -46,4 +54,12 @@ class ServiceCreateResponse(OkMessageSchema):
class ServiceCreateCategoryResponse(OkMessageSchema):
pass
class ServiceUpdateResponse(OkMessageSchema):
pass
class ServiceDeleteResponse(OkMessageSchema):
pass
# endregion