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

5 lines
136 B
TypeScript

export interface DeleteContactCommand {
id: string;
hard?: boolean; // true for permanent delete, false/undefined for soft delete
}