mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-14 11:50:31 +00:00
8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
import { IsArray, IsOptional } from 'class-validator';
|
|
|
|
export class FinancialSheetBranchesQueryDto {
|
|
@IsArray()
|
|
@IsOptional()
|
|
branchesIds: Array<number>;
|
|
}
|