src/app/modules/workspace/interfaces/selectfilter.ts
board |
board: |
Type : string[]
|
contentType |
contentType: |
Type : string[]
|
grades |
grades: |
Type : string[]
|
medium |
medium: |
Type : string[]
|
searchText |
searchText: |
Type : string
|
subject |
subject: |
Type : string[]
|
export interface ISelectFilter {
board?: Array<string> ;
subject?: Array<string>;
grades?: Array<string>;
medium?: Array<string>;
contentType?: Array<string>;
searchText: string;
}