This commit is contained in:
2024-07-22 12:46:12 +03:00
parent af05b51d1c
commit 23dbff2891
46 changed files with 1173 additions and 40 deletions

View File

@@ -0,0 +1,13 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { PayrollSchemeSchema } from './PayrollSchemeSchema';
export type PayRateSchemaBase = {
name: string;
payrollScheme: PayrollSchemeSchema;
baseRate: number;
overtimeRate?: (number | null);
overtimeThreshold?: (number | null);
};