peer-group-grading/crates/backend/src/dto/project.rs

8 lines
176 B
Rust

use sea_orm::prelude::Uuid;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug)]
pub struct UpdateProject {
pub id: Uuid,
pub name: String,
}