export interface IFeatureModelAttributes {
    name: string;
    value: boolean;
    sub?: IFeatureModelAttributes[];
}
