updated user model

This commit is contained in:
Sascha Kühl 2025-05-26 15:43:07 +02:00
parent ca580574f6
commit be17cbacd0
1 changed files with 1 additions and 4 deletions

View File

@ -2,11 +2,8 @@ export default interface User {
id: number, id: number,
firstName: string, firstName: string,
lastName: string, lastName: string,
gender: string,
handedness: string,
weight: number,
height: number,
dateOfBirth: Date, dateOfBirth: Date,
roles: string[],
createdAt: Date, createdAt: Date,
updatedAt: Date, updatedAt: Date,
} }