Files
paperless-ngx/src-ui/src/app/data/user.ts
2022-08-23 19:20:08 -07:00

8 lines
154 B
TypeScript

import { ObjectWithId } from './object-with-id'
export interface User extends ObjectWithId {
username: string
firstname: string
lastname: string
}