20 lines
445 B
TypeScript
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;
|
|
// }
|