export interface FeatureModel {
    index: number | null;
    modules: ScopeModel[];
    name: string;
    _id: string;
}
export interface ScopeModel {
    key: string;
    name: string;
    path: string;
    url: string;
}
