1 2 3 4 5 6 7 8 9
use time::OffsetDateTime; use crate::value_objects::ChildCompletionRef; #[derive(Debug, Clone, PartialEq, Eq)] pub struct AcceptChildCompletion { pub completion: ChildCompletionRef, pub now: OffsetDateTime, }