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[]
|
|
|
|
|
}
|