fabaccess-bffh/src/space.rs
Gregor Reitzenstein d0b73c9b49 make compile
2021-09-19 15:58:37 +02:00

10 lines
125 B
Rust

use uuid::Uuid;
#[derive(Debug, Clone)]
pub struct Space {
pub id: Uuid,
pub name: String,
pub info: String,
}