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