A digital life memoir of your life
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
221 B

//! Versions of the attachments.
use serde::Deserialize;
use serde::Serialize;
#[derive(Deserialize, Serialize)]
pub struct IncomingAttachment {
name: String,
content_type: String,
content_base64: String,
}