import { ContactType } from '../../../Domain/Contact/ContactAggregate'; export interface CreateContactCommand { name: string; email: string; userid?: string; type: ContactType; txt: string; } //# sourceMappingURL=CreateContactCommand.d.ts.map