feat(application): add wrapup stats computation engine

This commit is contained in:
2026-06-02 21:44:46 +02:00
parent 4df78221a8
commit 8c31a2b829
6 changed files with 474 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
use domain::models::wrapup::{DateRange, WrapUpScope};
pub struct ComputeWrapUpQuery {
pub scope: WrapUpScope,
pub date_range: DateRange,
}