mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-06 23:05:42 +01:00
10 lines
194 B
TypeScript
10 lines
194 B
TypeScript
|
|
import { ObjectWithId } from './object-with-id'
|
||
|
|
|
||
|
|
export interface PaperlessGroup extends ObjectWithId {
|
||
|
|
name?: string
|
||
|
|
|
||
|
|
user_count?: number // not implemented yet
|
||
|
|
|
||
|
|
permissions?: string[]
|
||
|
|
}
|