Files
SIRH/frontend/services/dto/contract.ts
2026-02-18 17:59:57 +01:00

8 lines
142 B
TypeScript

export type Contract = {
id: number
name: string
trackingMode: 'TIME' | 'PRESENCE'
weeklyHours?: number | null
isActive?: boolean
}