mirror of
https://github.com/immich-app/immich.git
synced 2025-12-22 23:26:58 -08:00
8 lines
121 B
TypeScript
8 lines
121 B
TypeScript
export type ImmichUser = {
|
|
id: string,
|
|
email: string,
|
|
firstName: string,
|
|
lastName: string,
|
|
isAdmin: boolean,
|
|
}
|