interface User {
    id?: string;
    username: string;
    password: string;
    uni: string;
}
export { User };
