Some checks failed
ci/woodpecker/push/check_fmt Pipeline failed
Reviewed-on: #29 Co-authored-by: Mika <mika.bomm@outlook.com> Co-committed-by: Mika <mika.bomm@outlook.com>
8 lines
176 B
Rust
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,
|
|
}
|