Files
rent/apps/server/src/modules/shared/config/dto/config.dto.ts
T
2026-05-15 11:28:02 +08:00

13 lines
208 B
TypeScript

import { IsNumber, Min, Max } from 'class-validator';
export class UpdateServiceFeeDto {
@IsNumber()
@Min(0)
@Max(1)
rate: number;
}
export class UpdateStorageConfigDto {
[key: string]: string;
}