Files
Lesstime/frontend/services/dto/user-data.ts
2026-03-15 19:29:36 +01:00

17 lines
386 B
TypeScript

export type UserData = {
id: number
'@id'?: string
username: string
roles: string[]
client?: { '@id'?: string; id: number; name: string } | null
allowedProjects?: { '@id'?: string; id: number; name: string }[]
}
export type UserWrite = {
username: string
password?: string
roles: string[]
client?: string | null
allowedProjects?: string[]
}