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

15 lines
212 B
TypeScript
Raw Normal View History

2023-01-16 19:37:39 +00:00
export interface User {
sub: string;
name: string;
email?: string;
picture?: string;
color?: string;
}
2023-01-25 17:01:58 +00:00
export interface AddedBy {
sub: string;
name: string;
picture?: string;
color?: string;
}