You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
XJC/src/User.ts

15 lines
253 B
TypeScript

export class User
{
_id: string;
email: string;
emailVerified: boolean;
password: string;
familyname: string;
firstname: string;
username: string;
birthday: Date;
idCard: string;
secretCode: string;
status: string;
}