Added Backend

This commit is contained in:
2026-01-06 12:07:43 +01:00
parent b013ef8f4b
commit 6f3d4c0bff
165 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
export interface StaffTimeEntry {
id: string
tenant_id: string
user_id: string
started_at: string
stopped_at?: string | null
duration_minutes?: number | null
type: 'work' | 'break' | 'absence' | 'other'
description?: string | null
created_at?: string
updated_at?: string
}
export interface StaffTimeEntryConnect {
id: string
time_entry_id: string
project_id?: string | null
customer_id?: string | null
task_id?: string | null
ticket_id?: string | null
started_at: string
stopped_at: string
duration_minutes?: number
notes?: string | null
created_at?: string
updated_at?: string
}