zcash-grant-system/frontend/types/rfp.ts

14 lines
304 B
TypeScript

import { Proposal } from './proposal';
import { PROPOSAL_CATEGORY, RFP_STATUS } from 'api/constants';
export interface RFP {
id: number;
dateCreated: number;
title: string;
brief: string;
content: string;
category: PROPOSAL_CATEGORY;
status: RFP_STATUS;
acceptedProposals: Proposal[];
}