export interface Category {
categoryID: number;
name: string;
parentID: number;
icon?: string;
wideBanner?: string;
}