api/routes/modules/assignments/tasks/
common.rs

1use serde::Serialize;
2
3#[derive(Debug, Serialize)]
4pub struct TaskResponse {
5    pub id: i64,
6    pub task_number: i64,
7    pub name: String,
8    pub command: String,
9    pub created_at: String,
10    pub updated_at: String,
11}