export interface CategoryList { CategoryLat: string; CategoryLong: string; Categories: Category[]; } export interface Category { CategoryID: number; CategoryName: string; CategoryImage?: any; SubCategory: SubCategory[]; } export interface SubCategory { SubCategoryID: number; SubCategoryName: string; }