mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2025-03-12 16:11:43 +01:00
10 lines
125 B
Rust
10 lines
125 B
Rust
|
use uuid::Uuid;
|
||
|
|
||
|
#[derive(Debug, Clone)]
|
||
|
pub struct Space {
|
||
|
pub id: Uuid,
|
||
|
pub name: String,
|
||
|
pub info: String,
|
||
|
}
|
||
|
|