update swagger

This commit is contained in:
2026-07-02 20:21:12 +03:30
parent 8e2e43e12b
commit 1f06b378e6
18 changed files with 346 additions and 34 deletions
@@ -0,0 +1,12 @@
import { ApiProperty } from '@nestjs/swagger';
export class SalonSmsBalanceDto {
@ApiProperty({ example: 100 })
freeSmsRemaining: number;
@ApiProperty({ example: 250 })
purchasedSmsRemaining: number;
@ApiProperty({ example: 350 })
totalRemaining: number;
}