Interface Bookshelf

interface Bookshelf {
    id: string;
    name: string;
    rights: string[];
    subgroups: Bookshelf[];
}

Properties

Properties

id: string

Bookshelf id

name: string

Bookshelf name

rights: string[]

Current user's effective rights in this bookshelf

subgroups: Bookshelf[]

Bookshelf inside this bookshelf