Prepare BizOne portal production wallet and UI

This commit is contained in:
2026-05-22 13:13:10 +07:00
parent 36be8607e0
commit 5144207c42
124 changed files with 11034 additions and 7720 deletions

View File

@ -0,0 +1,12 @@
import { IsInt, IsOptional, IsString, Max, Min } from 'class-validator';
export class CreateMidtransTopupDto {
@IsInt()
@Min(50000)
@Max(1000000000)
amountMinor!: number;
@IsOptional()
@IsString()
description?: string;
}