export interface BaseUser {
    id?: string | number;
    email?: string;
    firstName?: string;
    lastName?: string;
}
