mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2024-11-11 01:53:23 +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,
|
|
}
|
|
|