mirror of
https://github.com/rustmailer/bichon.git
synced 2026-08-31 01:52:30 +00:00
11 lines
216 B
Rust
11 lines
216 B
Rust
//use poem_openapi::Object;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Debug, Default, Eq, PartialEq, Deserialize, Serialize)]
|
|
pub struct Contact {
|
|
pub email: String,
|
|
pub name: Option<String>,
|
|
}
|
|
|
|
|