targo-backend/src/modules/timesheets/~misc_deprecated-files/search-timesheet.dto.ts

20 lines
445 B
TypeScript

// import { Type } from "class-transformer";
// import { IsBoolean, IsInt, IsOptional } from "class-validator";
// export class SearchTimesheetDto {
// @IsOptional()
// @Type(() => Number)
// @IsInt()
// timesheet_id?: number;
// @IsOptional()
// @Type(()=> Number)
// @IsInt()
// employee_id?: number;
// @IsOptional()
// @Type(()=> Boolean)
// @IsBoolean()
// is_approved?: boolean;
// }