2023-12-19 22:36:35 -08:00

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