Refactor frontend data models

This commit is contained in:
shamoon 2023-12-19 22:36:35 -08:00
parent 5723bd8dd8
commit 66b2d90c50
120 changed files with 640 additions and 706 deletions

View file

@ -0,0 +1,9 @@
import { ObjectWithId } from './object-with-id'
export interface Group extends ObjectWithId {
name?: string
user_count?: number // not implemented yet
permissions?: string[]
}