summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/core/models/dataInterface.ts
blob: 969651f49552ae6f39ae21a8a167def01b7acbdd (plain)
1
2
3
4
5
6
7
8
9
10
11
enum baseUrl{
    baseUrl = '/api/usecaseui-server/v1'  //online
    // baseUrl = 'http://10.73.191.100:8082'    //local two
}

interface servicesTableData {
    total:number,
    tableList:string[]
}

export {servicesTableData , baseUrl}