aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/models/filter-properties-assignment-data.ts
blob: 067ac630dee9aef24cad5e9ce086eed476f2b492 (plain)
1
2
3
4
5
6
7
8
9
10
/**
 * Created by rc2122 on 5/16/2017.
 */
export class FilterPropertiesAssignmentData {
    propertyName:string;
    selectedTypes:Array<string>;
    constructor(){
        this.selectedTypes = [];
    }
}