2023-12-19 22:36:35 -08:00

15 lines
344 B
TypeScript

import { ObjectWithId } from './object-with-id'
export interface User extends ObjectWithId {
username?: string
first_name?: string
last_name?: string
date_joined?: Date
is_staff?: boolean
is_active?: boolean
is_superuser?: boolean
groups?: number[] // Group[]
user_permissions?: string[]
inherited_permissions?: string[]
}