This commit is contained in:
Andras Schmelczer 2024-12-08 14:25:12 +00:00
parent c576287eea
commit 3f5409da60
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
2 changed files with 97 additions and 0 deletions

View file

@ -0,0 +1,15 @@
use chrono::{DateTime, Utc};
use serde::Deserialize;
#[derive(Debug, Deserialize)]
pub struct CreateDocumentVersion {
pub created_date: DateTime<Utc>,
pub relative_path: String,
pub content_base64: String,
pub is_binary: bool,
}
#[derive(Debug, Deserialize)]
pub struct DeleteDocumentVersion {
pub created_date: DateTime<Utc>,
}