Files
SerpentRace/SerpentRace_Backend/src/Application/Organization/commands/CreateOrganizationCommand.ts
T

9 lines
175 B
TypeScript

export interface CreateOrganizationCommand {
name: string;
contactfname: string;
contactlname: string;
contactphone: string;
contactemail: string;
url?: string;
}