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,11 @@
pub mod requests;
pub mod responses;
use serde::{Deserialize, Serialize};
use uuid::Uuid;
#[derive(Debug, Serialize, Deserialize)]
pub struct ProjectDto {
pub id: Uuid,
pub name: String,
}