Files
SerpentRace/SerpentRace_Backend/src/Application/Contact/commands/CreateContactCommand.ts
T

10 lines
203 B
TypeScript

import { ContactType } from '../../../Domain/Contact/ContactAggregate';
export interface CreateContactCommand {
name: string;
email: string;
userid?: string;
type: ContactType;
txt: string;
}