export class OptionFilter {
    constructor(
        public selectedOption: String[],
        public checkedOption: boolean[]
    ) { }
}
