mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
refactor(nestjs): contacts module
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
import { IsNumber, IsOptional, IsString } from 'class-validator';
|
||||
|
||||
export class GetContactsAutoCompleteQuery {
|
||||
@IsNumber()
|
||||
@IsOptional()
|
||||
limit: number;
|
||||
|
||||
@IsString()
|
||||
@IsOptional()
|
||||
keyword: string;
|
||||
}
|
||||
Reference in New Issue
Block a user