assignmentlib/dto/report_response.rs
use serde::{Deserialize, Serialize};
use uuid::Uuid;
use crate::dto::report_question_response::ReportQuestionResponse;
#[derive(
Clone,
Serialize,
Deserialize,
Debug,
PartialEq
)]
#[serde(rename_all = "camelCase")]
pub struct ReportResponse {
pub id: Uuid,
pub user_progress: Vec<ReportQuestionResponse>
}