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

10 lines
185 B
TypeScript
Raw Normal View History

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