mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-06 00:47:47 +00:00
12 lines
230 B
TypeScript
12 lines
230 B
TypeScript
import { BackendLanguage } from '@/utils/languages'
|
|
|
|
export type ApiUser = {
|
|
id: string
|
|
email: string
|
|
full_name: string | null
|
|
short_name: string | null
|
|
last_name: string
|
|
language: BackendLanguage
|
|
timezone: string
|
|
}
|