import { Category } from './category';
export interface AdapterConnector {
    selected: string[];
    categories: Category[];
}
