export interface Topic {
    description?: string | undefined;
    hidden?: boolean | undefined;
    name: string;
}
