homemanager-fe/src/interfaces/user.interfaces.ts
2023-01-16 21:37:39 +02:00

8 lines
113 B
TypeScript

export interface User {
sub: string;
name: string;
email?: string;
picture?: string;
color?: string;
}