add core models

This commit is contained in:
2022-10-03 22:20:01 +02:00
parent 8c51b68523
commit b01b33f7d1
11 changed files with 58 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize)]
pub struct CreateProjectDto {
pub name: String,
}