mirror of
https://github.com/LucasVbr/meeting-app.git
synced 2026-07-09 15:08:06 +00:00
12 lines
285 B
TypeScript
12 lines
285 B
TypeScript
export class UserData {
|
|
constructor(
|
|
public email: string = "",
|
|
public firstName: string = "",
|
|
public lastName: string = "",
|
|
public bio: string = "",
|
|
public location: string = "",
|
|
public images: string[] = [],
|
|
public birthdate: Date = new Date()
|
|
) {}
|
|
}
|