todo: exporter

This commit is contained in:
2026-05-09 14:30:11 +02:00
parent ebab30b1ea
commit 6cd332f758
6 changed files with 96 additions and 16 deletions

View File

@@ -1,4 +1,5 @@
use chrono::NaiveDateTime;
use domain::models::ExportFormat;
use uuid::Uuid;
pub struct LogReviewCommand {
@@ -35,3 +36,8 @@ pub struct DeleteReviewCommand {
pub review_id: Uuid,
pub requesting_user_id: Uuid,
}
pub struct ExportCommand {
pub user_id: Uuid,
pub format: ExportFormat,
}