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