homemanager-fe/src/interfaces/user.interfaces.ts
2023-01-25 19:01:58 +02:00

15 lines
212 B
TypeScript

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