aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/services/aaiService/responseInterfaces/getCategoryParamsResponseInterface.ts
blob: 06398904cd7f2d5e15a0de7de7b9a1cc864690c6 (plain)
1
2
3
4
5
6
7
8
9
10
interface CategoryParametersResponse {
  owningEntity: any[],
  project: any[]
  lineOfBusiness: any[]
  platform: any[]
}

export interface GetCategoryParamsResponseInterface {
  categoryParameters: CategoryParametersResponse;
}