import { BaseResult } from './response.interface'; export declare enum BusinessType { 'COMPANY' = "COMPANY", 'PERSONAL' = "PERSONAL", 'GOVERNMENT' = "GOVERNMENT" } /** * Category item from list app categories API * @property id - ID của danh mục * @property label - Tên của danh mục * @property subCategories - Danh sách các danh mục con */ export interface AppCategoryItem { id: string; label: string; subCategories: string[]; } export interface ListAppCategoryResponse extends BaseResult { total?: number; categories: AppCategoryItem[]; } export interface GetAppCategoriesRequest { offset?: number; limit?: number; }