export interface UserInterface {
    id: string;
    name: string;
    username?: string;
    email?: string;
    session?: string;
}
