3cx_tapi/src/tapi-contact.ts

9 lines
172 B
TypeScript
Raw Normal View History

2020-11-04 22:59:32 +01:00
/* eslint-disable camelcase */
export interface TapiContact {
tD_ID?: string;
tD_NAME: string;
tD_NUMBER?: string;
tD_NUMBER_TAPI?: string;
2020-11-09 08:53:39 +01:00
tD_MEDIUM?: string;
2020-11-04 22:59:32 +01:00
}