feat(application): wrapup generate/get/list use cases

This commit is contained in:
2026-06-02 22:09:08 +02:00
parent 59b42ce810
commit b171d2d1e2
11 changed files with 145 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
use chrono::NaiveDate;
use uuid::Uuid;
pub struct RequestWrapUpCommand {
pub user_id: Option<Uuid>,
pub start_date: NaiveDate,
pub end_date: NaiveDate,
}