server/src/resources.rs

11 lines
175 B
Rust
Raw Normal View History

2022-09-29 07:35:54 +00:00
pub struct Resource {
resource_type: String,
name: String,
external_id: Option<String>,
}
pub struct Group {
name: String,
external_id: Option<String>,
}