blob: 5c48a17b28c48ad373f22e16c901bad56a3d90d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import { UserRole } from './user-role.type'
export interface User {
id: number
username: string
email: string
displayNSFW: boolean
role: UserRole
createdAt: Date
}
|