9 lines
178 B
Rust
9 lines
178 B
Rust
|
use crate::common::*;
|
||
|
|
||
|
#[derive(Debug, Deserialize)]
|
||
|
pub(crate) struct Reference {
|
||
|
pub(crate) url: Url,
|
||
|
pub(crate) title: Option<String>,
|
||
|
pub(crate) description: String,
|
||
|
}
|