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.

14 lines
302 B

//! Versions of the entry.
use serde::Deserialize;
use serde::Serialize;
#[derive(Deserialize, Serialize)]
pub struct IncomingEntry {
title: String,
content: String,
source: String,
meta: Vec<super::meta::IncomingMeta>,
attachments: Vec<super::attachment::IncomingAttachment>,
}