Forked from
TDT4140-Group 58 / Spring2021-SellPoint
120 commits behind the upstream repository.
-
Martin Immanuel Burgos authoredMartin Immanuel Burgos authored
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;