movie-night-web/app/types/user.ts

7 lines
96 B
TypeScript

export type User = {
id: number,
username: string
email: string
role: number
}