aboutsummaryrefslogtreecommitdiff
path: root/src/model
diff options
context:
space:
mode:
authorJoris2022-02-12 16:57:19 +0100
committerJoris2022-02-12 16:57:19 +0100
commit3adf3f9697c4e2beb10e652947046d5fddda2ed4 (patch)
tree689e704cf4665cc4cd1949c06d4a7b0553d07501 /src/model
parenta2ba205df12332a360d89991fe508f964d88c73f (diff)
downloadflashcards-3adf3f9697c4e2beb10e652947046d5fddda2ed4.tar.gz
flashcards-3adf3f9697c4e2beb10e652947046d5fddda2ed4.tar.bz2
flashcards-3adf3f9697c4e2beb10e652947046d5fddda2ed4.zip
Say when the next card will be available
Diffstat (limited to 'src/model')
-rw-r--r--src/model/card.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/model/card.rs b/src/model/card.rs
index 3ac395e..811f877 100644
--- a/src/model/card.rs
+++ b/src/model/card.rs
@@ -5,4 +5,5 @@ pub struct Card {
pub question: String,
pub responses: Vec<String>,
pub state: space_repetition::State,
+ pub ready: u64,
}