diff --git a/src/files/commands.rs b/src/files/commands.rs index a53aa50..483fd7a 100644 --- a/src/files/commands.rs +++ b/src/files/commands.rs @@ -346,7 +346,9 @@ pub enum DoneKind { #[derive(Debug)] pub struct Done { pub kind: DoneKind, + /// The date of the task the DONE refers to. pub date: Option, + /// When the task was actually completed. pub done_at: NaiveDate, }