Add dialog for cash transfer between accounts (#2433)

* Add dialog for cash transfer between accounts

---------

Co-authored-by: Thomas <4159106+dtslvr@users.noreply.github.com>
This commit is contained in:
Aldrin
2023-10-07 18:16:13 +05:30
committed by GitHub
parent d40bc5070a
commit e60fe48fdd
11 changed files with 225 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { IsNumber, IsString } from 'class-validator';
export class TransferBalanceDto {
@IsString()
accountIdFrom: string;
@IsString()
accountIdTo: string;
@IsNumber()
balance: number;
}