9 lines
202 B
Rust
9 lines
202 B
Rust
|
use serde::{Deserialize, Serialize};
|
||
|
|
||
|
#[derive(Debug, Serialize, Deserialize)]
|
||
|
#[serde(rename_all = "camelCase")]
|
||
|
pub struct Contact {
|
||
|
pub contact: String,
|
||
|
pub contact_origin: Option<String>,
|
||
|
}
|