mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 04:10:32 +00:00
7 lines
162 B
TypeScript
7 lines
162 B
TypeScript
import { IsArray, IsOptional } from "class-validator";
|
|
|
|
export class FinancialSheetBranchesQueryDto {
|
|
@IsArray()
|
|
@IsOptional()
|
|
branchesIds: Array<number>;
|
|
} |