paperless-ngx/src-ui/src/app/data/paperless-group.ts

10 lines
194 B
TypeScript
Raw Normal View History

2022-11-12 18:46:52 +00:00
import { ObjectWithId } from './object-with-id'
export interface PaperlessGroup extends ObjectWithId {
name?: string
user_count?: number // not implemented yet
permissions?: string[]
}