Move entries to a different time

This commit is contained in:
Joscha 2021-12-21 19:24:27 +01:00
parent 05a4582f13
commit 1ac39c69f2
9 changed files with 99 additions and 26 deletions

View file

@ -265,7 +265,8 @@ pub enum Statement {
Move {
span: Span,
from: NaiveDate,
to: NaiveDate,
to: Option<NaiveDate>,
to_time: Option<Time>,
},
Remind(Option<Spanned<Delta>>),
}