mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-21 10:29:29 -05:00
10 lines
185 B
TypeScript
10 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[]
|
|
}
|