mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
9 lines
202 B
TypeScript
9 lines
202 B
TypeScript
/* tslint:disable */
|
|
import { TouchedBase } from './touched-base';
|
|
export interface CommunicationDetailsDTO extends TouchedBase{
|
|
email?: string;
|
|
fax?: string;
|
|
mobile?: string;
|
|
phone?: string;
|
|
}
|