new modules

This commit is contained in:
2026-03-09 11:44:22 +03:30
parent 5fda2d6d8c
commit 9e33129902
13 changed files with 154 additions and 0 deletions
@@ -0,0 +1 @@
export class CreateBusinessDto {}
@@ -0,0 +1,4 @@
import { PartialType } from '@nestjs/swagger';
import { CreateBusinessDto } from './create-business.dto';
export class UpdateBusinessDto extends PartialType(CreateBusinessDto) {}