10 lines
203 B
TypeScript
10 lines
203 B
TypeScript
import { ContactType } from '../../../Domain/Contact/ContactAggregate';
|
|
|
|
export interface CreateContactCommand {
|
|
name: string;
|
|
email: string;
|
|
userid?: string;
|
|
type: ContactType;
|
|
txt: string;
|
|
}
|