Skip to content
Snippets Groups Projects
Forked from TDT4140-Group 58 / Spring2021-SellPoint
120 commits behind the upstream repository.
user.ts 219 B
// Interface for the User object, taken from the database
interface IUser{
    userId?: number;
    username: string;
    email: string;
    password: string;
    create_time?: Date;
}

export default IUser;