export interface Category {
    name: string;
    id: number;
    author: number;
    description: string;
    preview_url: string;
}