export interface IGetReportRequest {
    ReportId: string;
}
export interface IGetReportResponse {
    Report: string;
}
