aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/user.model.ts
blob: 01cc380d3c17bc7f233dd21825783416d456d86f (plain) (blame)
1
2
3
4
5
6
7
8
export interface User {
  id: number
  username: string
  email: string
  displayNSFW: boolean
  role: string[]
  createdAt: Date
}