diff --git a/@next/types/schemas/prototypeApplication/data/Proposal.ts b/@next/types/schemas/prototypeApplication/data/Proposal.ts new file mode 100644 index 00000000..49158080 --- /dev/null +++ b/@next/types/schemas/prototypeApplication/data/Proposal.ts @@ -0,0 +1,9 @@ +import {OpenSpaceDesignation} from '../enums/OpenSpace'; + +export interface ProposalBase { + nature?: { + openSpaces?: { + designation: OpenSpaceDesignation; + }; + }; +}