homemanager-fe/src/interfaces/user.interfaces.ts

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;
}