blob: 9e005297981c88812ff27056cde71eae23ac3f3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import {SelectOptionInterface} from "./selectOption";
export class CategoryParams {
owningEntityList: SelectOptionInterface[];
projectList: SelectOptionInterface[];
lineOfBusinessList: SelectOptionInterface[];
platformList: SelectOptionInterface[];
constructor(owningEntityList=[], projectList=[], lob=[], platform=[]){
this.owningEntityList = owningEntityList;
this.projectList = projectList;
this.lineOfBusinessList = lob;
this.platformList = platform;
}
}
|